Skip to content

Commit

Permalink
restrict when further (#16016)
Browse files Browse the repository at this point in the history
  • Loading branch information
amunger authored Sep 8, 2024
1 parent 9fa09b6 commit 92a1843
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,12 @@
{
"command": "jupyter.runcurrentcelladvance",
"key": "shift+enter",
"when": "editorTextFocus && !editorHasSelection && jupyter.hascodecells && !notebookEditorFocused"
"when": "editorTextFocus && !editorHasSelection && jupyter.hascodecells && !notebookEditorFocused && !isCompositeNotebook"
},
{
"command": "jupyter.runcurrentcell",
"key": "ctrl+enter",
"when": "editorTextFocus && !editorHasSelection && jupyter.hascodecells && !notebookEditorFocused"
"when": "editorTextFocus && !editorHasSelection && jupyter.hascodecells && !notebookEditorFocused && !isCompositeNotebook"
},
{
"command": "jupyter.runcurrentcellandaddbelow",
Expand Down

0 comments on commit 92a1843

Please sign in to comment.