Skip to content

Commit

Permalink
dont execute to console from the IW input box (#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 May 8, 2024
1 parent 569ca65 commit 946d371
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 @@ -1086,7 +1086,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 946d371

Please sign in to comment.