Skip to content

Commit 946d371

Browse files
authored
dont execute to console from the IW input box (#23389)
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
1 parent 569ca65 commit 946d371

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@
10861086
{
10871087
"command": "python.execSelectionInTerminal",
10881088
"key": "shift+enter",
1089-
"when": "editorTextFocus && editorLangId == python && !findInputFocussed && !replaceInputFocussed && !jupyter.ownsSelection && !notebookEditorFocused"
1089+
"when": "editorTextFocus && editorLangId == python && !findInputFocussed && !replaceInputFocussed && !jupyter.ownsSelection && !notebookEditorFocused && activeEditor != 'workbench.editor.interactive'"
10901090
},
10911091
{
10921092
"command": "python.refreshTensorBoard",

0 commit comments

Comments
 (0)