Skip to content

Commit

Permalink
dont execute to console from the IW input box (microsoft#23389)
Browse files Browse the repository at this point in the history
microsoft/vscode#212051

trying to straighten out the keybindings for interactive.execute, we
don't want the code to go to the console from the IW/REPL input box
  • Loading branch information
amunger authored and anthonykim1 committed May 10, 2024
1 parent e0ae2ff commit 42a513e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1095,7 +1095,7 @@
{
"command": "python.execSelectionInTerminal",
"key": "shift+enter",
"when": "editorTextFocus && editorLangId == python && !findInputFocussed && !replaceInputFocussed && !jupyter.ownsSelection && !notebookEditorFocused"
"when": "editorTextFocus && editorLangId == python && !findInputFocussed && !replaceInputFocussed && !jupyter.ownsSelection && !notebookEditorFocused && activeEditor != 'workbench.editor.interactive'"
},
{
"command": "python.refreshTensorBoard",
Expand Down

0 comments on commit 42a513e

Please sign in to comment.