Skip to content

Commit

Permalink
dont send to REPL from a notebook editor (#23572)
Browse files Browse the repository at this point in the history
fix #23555
  • Loading branch information
amunger authored and DonJayamanne committed Jun 24, 2024
1 parent 40e45b6 commit c2a044e
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 @@ -1118,7 +1118,7 @@
{
"command": "python.execInREPL",
"key": "shift+enter",
"when": "config.python.REPL.sendToNativeREPL && activeEditor != 'workbench.editor.interactive'&& editorLangId == python && editorTextFocus && !jupyter.ownsSelection"
"when": "config.python.REPL.sendToNativeREPL && activeEditor != 'workbench.editor.interactive'&& editorLangId == python && editorTextFocus && !jupyter.ownsSelection && !notebookEditorFocused"
},
{
"command": "python.execInREPLEnter",
Expand Down

0 comments on commit c2a044e

Please sign in to comment.