Skip to content

Commit 847b66b

Browse files
committed
add missing menu items
1 parent 356c932 commit 847b66b

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

package.json

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1430,6 +1430,23 @@
14301430
"title": "%jupyter.command.jupyter.runFileInteractive.title%",
14311431
"when": "resourceLangId == python && !isInDiffEditor && isWorkspaceTrusted"
14321432
}
1433+
],
1434+
"view/item/context": [
1435+
{
1436+
"command": "deepnote.openNotebook",
1437+
"when": "view == deepnoteExplorer",
1438+
"group": "inline@0"
1439+
},
1440+
{
1441+
"command": "deepnote.openFile",
1442+
"when": "view == deepnoteExplorer",
1443+
"group": "inline@1"
1444+
},
1445+
{
1446+
"command": "deepnote.revealInExplorer",
1447+
"when": "view == deepnoteExplorer",
1448+
"group": "inline@2"
1449+
}
14331450
]
14341451
},
14351452
"configuration": {
@@ -2058,7 +2075,7 @@
20582075
"deepnote": [
20592076
{
20602077
"id": "deepnoteExplorer",
2061-
"name": "Explorer",
2078+
"name": "%deepnote.views.explorer.name%",
20622079
"when": "workspaceFolderCount != 0",
20632080
"iconPath": {
20642081
"light": "./resources/light/deepnote-icon.svg",

package.nls.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,5 +248,6 @@
248248
"deepnote.commands.refreshExplorer.title": "Refresh Explorer",
249249
"deepnote.commands.openNotebook.title": "Open Notebook",
250250
"deepnote.commands.openFile.title": "Open File",
251-
"deepnote.commands.revealInExplorer.title": "Reveal in Explorer"
251+
"deepnote.commands.revealInExplorer.title": "Reveal in Explorer",
252+
"deepnote.views.explorer.name": "Explorer"
252253
}

0 commit comments

Comments
 (0)