Skip to content

Commit

Permalink
Add back menu and shortcut for the launcher (#55)
Browse files Browse the repository at this point in the history
* Add back menu and shortcut for the launcher

* Bump version to 0.5.1
  • Loading branch information
krassowski authored Jun 15, 2024
1 parent c952a84 commit 41a3e0c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupyterlab-new-launcher",
"version": "0.5.0",
"version": "0.5.1",
"description": "A redesigned JupyterLab launcher",
"keywords": [
"jupyter",
Expand Down
21 changes: 20 additions & 1 deletion schema/plugin.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"jupyter.lab.shortcuts": [],
"jupyter.lab.setting-icon": "ui-components:launcher",
"jupyter.lab.setting-icon-label": "New Launcher",
"jupyter.lab.toolbars": {
Expand All @@ -11,6 +10,26 @@
}
]
},
"jupyter.lab.menus": {
"main": [
{
"id": "jp-mainmenu-file",
"items": [
{
"command": "launcher:create",
"rank": 0.99
}
]
}
]
},
"jupyter.lab.shortcuts": [
{
"command": "launcher:create",
"keys": ["Accel Shift L"],
"selector": "body"
}
],
"title": "New Launcher",
"description": "jupyterlab-new-launcher settings.",
"type": "object",
Expand Down

0 comments on commit 41a3e0c

Please sign in to comment.