mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-19 03:21:36 -04:00
Ports to release/1.13 for 10/21 (#7879)
* Add (dummy) IPyWidgets Renderer (#7849) * Updates to package.json to show books on stable (#7836) * Updates to package.json to show books on stable * remove notebookQuality context key * renamed untitiled to unsaved * fix the wizard opened twice issue #7866 (#7869) * fix a typo (#7871)
This commit is contained in:
@@ -155,6 +155,14 @@
|
||||
"dark": "resources/dark/search_inverse.svg",
|
||||
"light": "resources/light/search.svg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "notebook.command.searchUntitledBook",
|
||||
"title": "%title.searchJupyterBook%",
|
||||
"icon": {
|
||||
"dark": "resources/dark/search_inverse.svg",
|
||||
"light": "resources/light/search.svg"
|
||||
}
|
||||
}
|
||||
],
|
||||
"languages": [
|
||||
@@ -235,7 +243,7 @@
|
||||
},
|
||||
{
|
||||
"command": "books.sqlserver2019",
|
||||
"when": "sqlserver2019 && notebookQuality != stable"
|
||||
"when": "sqlserver2019"
|
||||
}
|
||||
],
|
||||
"touchBar": [
|
||||
@@ -270,12 +278,17 @@
|
||||
"view/item/context": [
|
||||
{
|
||||
"command": "notebook.command.searchBook",
|
||||
"when": "view =~ /^(untitledBookTreeView|bookTreeView)$/ && viewItem =~ /^(untitledBook|savedBook)$/ && notebookQuality != stable",
|
||||
"when": "view == bookTreeView && viewItem == savedBook",
|
||||
"group": "inline"
|
||||
},
|
||||
{
|
||||
"command": "notebook.command.searchUntitledBook",
|
||||
"when": "view == unsavedBookTreeView && viewItem == unsavedBook && unsavedBooks",
|
||||
"group": "inline"
|
||||
},
|
||||
{
|
||||
"command": "notebook.command.saveBook",
|
||||
"when": "view == untitledBookTreeView && viewItem == untitledBook && untitledBooks && notebookQuality != stable",
|
||||
"when": "view == unsavedBookTreeView && viewItem == unsavedBook && unsavedBooks",
|
||||
"group": "inline"
|
||||
}
|
||||
],
|
||||
@@ -397,8 +410,8 @@
|
||||
"name": "%title.SavedBooks%"
|
||||
},
|
||||
{
|
||||
"id": "untitledBookTreeView",
|
||||
"name": "%title.UntitledBooks%"
|
||||
"id": "unsavedBookTreeView",
|
||||
"name": "%title.UnsavedBooks%"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user