Fix notebook command palette clauses (#9752)

This commit is contained in:
Charles Gagnon
2020-03-26 14:43:03 -07:00
committed by GitHub
parent f5d640e7d0
commit fd950391e4

View File

@@ -251,23 +251,23 @@
},
{
"command": "notebook.command.runactivecell",
"when": "notebookEditorVisible"
"when": "activeEditor == workbench.editor.notebookEditor"
},
{
"command": "notebook.command.clearactivecellresult",
"when": "notebookEditorVisible"
"when": "activeEditor == workbench.editor.notebookEditor"
},
{
"command": "notebook.command.runallcells",
"when": "notebookEditorVisible"
"when": "activeEditor == workbench.editor.notebookEditor"
},
{
"command": "notebook.command.addcode",
"when": "notebookEditorVisible"
"when": "activeEditor == workbench.editor.notebookEditor"
},
{
"command": "notebook.command.addtext",
"when": "notebookEditorVisible"
"when": "activeEditor == workbench.editor.notebookEditor"
},
{
"command": "notebook.command.addcell",