Skip to content

Commit 41a3e0c

Browse files
authored
Add back menu and shortcut for the launcher (#55)
* Add back menu and shortcut for the launcher * Bump version to 0.5.1
1 parent c952a84 commit 41a3e0c

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyterlab-new-launcher",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "A redesigned JupyterLab launcher",
55
"keywords": [
66
"jupyter",

schema/plugin.json

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"jupyter.lab.shortcuts": [],
32
"jupyter.lab.setting-icon": "ui-components:launcher",
43
"jupyter.lab.setting-icon-label": "New Launcher",
54
"jupyter.lab.toolbars": {
@@ -11,6 +10,26 @@
1110
}
1211
]
1312
},
13+
"jupyter.lab.menus": {
14+
"main": [
15+
{
16+
"id": "jp-mainmenu-file",
17+
"items": [
18+
{
19+
"command": "launcher:create",
20+
"rank": 0.99
21+
}
22+
]
23+
}
24+
]
25+
},
26+
"jupyter.lab.shortcuts": [
27+
{
28+
"command": "launcher:create",
29+
"keys": ["Accel Shift L"],
30+
"selector": "body"
31+
}
32+
],
1433
"title": "New Launcher",
1534
"description": "jupyterlab-new-launcher settings.",
1635
"type": "object",

0 commit comments

Comments
 (0)