mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Fix notebook command palette clauses (#9752)
This commit is contained in:
@@ -251,23 +251,23 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"command": "notebook.command.runactivecell",
|
"command": "notebook.command.runactivecell",
|
||||||
"when": "notebookEditorVisible"
|
"when": "activeEditor == workbench.editor.notebookEditor"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"command": "notebook.command.clearactivecellresult",
|
"command": "notebook.command.clearactivecellresult",
|
||||||
"when": "notebookEditorVisible"
|
"when": "activeEditor == workbench.editor.notebookEditor"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"command": "notebook.command.runallcells",
|
"command": "notebook.command.runallcells",
|
||||||
"when": "notebookEditorVisible"
|
"when": "activeEditor == workbench.editor.notebookEditor"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"command": "notebook.command.addcode",
|
"command": "notebook.command.addcode",
|
||||||
"when": "notebookEditorVisible"
|
"when": "activeEditor == workbench.editor.notebookEditor"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"command": "notebook.command.addtext",
|
"command": "notebook.command.addtext",
|
||||||
"when": "notebookEditorVisible"
|
"when": "activeEditor == workbench.editor.notebookEditor"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"command": "notebook.command.addcell",
|
"command": "notebook.command.addcell",
|
||||||
|
|||||||
Reference in New Issue
Block a user