@jupyterlab/shortcuts-extension 0.17.3 → 0.18.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/schema/plugin.json +50 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/shortcuts-extension",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.4",
|
|
4
4
|
"description": "JupyterLab - Shortcuts Extension",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"watch": "tsc -w --listEmittedFiles"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@jupyterlab/application": "^0.
|
|
34
|
-
"@jupyterlab/coreutils": "^2.
|
|
33
|
+
"@jupyterlab/application": "^0.18.4",
|
|
34
|
+
"@jupyterlab/coreutils": "^2.1.4",
|
|
35
35
|
"@phosphor/commands": "^1.5.0",
|
|
36
36
|
"@phosphor/coreutils": "^1.3.0",
|
|
37
37
|
"@phosphor/disposable": "^1.1.2"
|
package/schema/plugin.json
CHANGED
|
@@ -118,6 +118,19 @@
|
|
|
118
118
|
},
|
|
119
119
|
"type": "object"
|
|
120
120
|
},
|
|
121
|
+
"completer:invoke-file": {
|
|
122
|
+
"default": {},
|
|
123
|
+
"properties": {
|
|
124
|
+
"command": { "default": "completer:invoke-file" },
|
|
125
|
+
"keys": { "default": ["Tab"] },
|
|
126
|
+
"selector": {
|
|
127
|
+
"default": ".jp-FileEditor .jp-mod-completer-enabled"
|
|
128
|
+
},
|
|
129
|
+
"title": { "default": "Invoke File Completion" },
|
|
130
|
+
"category": { "default": "Completer" }
|
|
131
|
+
},
|
|
132
|
+
"type": "object"
|
|
133
|
+
},
|
|
121
134
|
"console:linebreak": {
|
|
122
135
|
"default": {},
|
|
123
136
|
"properties": {
|
|
@@ -162,6 +175,17 @@
|
|
|
162
175
|
},
|
|
163
176
|
"type": "object"
|
|
164
177
|
},
|
|
178
|
+
"docmanager:save-as": {
|
|
179
|
+
"default": {},
|
|
180
|
+
"properties": {
|
|
181
|
+
"command": { "default": "docmanager:save-as" },
|
|
182
|
+
"keys": { "default": ["Accel Shift S"] },
|
|
183
|
+
"selector": { "default": "body" },
|
|
184
|
+
"title": { "default": "Save As" },
|
|
185
|
+
"category": { "default": "File Operations" }
|
|
186
|
+
},
|
|
187
|
+
"type": "object"
|
|
188
|
+
},
|
|
165
189
|
"editmenu:undo": {
|
|
166
190
|
"default": {},
|
|
167
191
|
"properties": {
|
|
@@ -767,6 +791,17 @@
|
|
|
767
791
|
},
|
|
768
792
|
"type": "object"
|
|
769
793
|
},
|
|
794
|
+
"notebook:run-in-console": {
|
|
795
|
+
"default": {},
|
|
796
|
+
"properties": {
|
|
797
|
+
"command": { "default": "notebook:run-in-console" },
|
|
798
|
+
"keys": { "default": [""] },
|
|
799
|
+
"selector": { "default": ".jp-Notebook.jp-mod-editMode" },
|
|
800
|
+
"title": { "default": "Run In Console" },
|
|
801
|
+
"category": { "default": "Notebook Cell Operations" }
|
|
802
|
+
},
|
|
803
|
+
"type": "object"
|
|
804
|
+
},
|
|
770
805
|
"notebook:run-cell-and-select-next": {
|
|
771
806
|
"default": {},
|
|
772
807
|
"properties": {
|
|
@@ -963,7 +998,7 @@
|
|
|
963
998
|
"keys": { "default": ["Shift Tab"] },
|
|
964
999
|
"selector": {
|
|
965
1000
|
"default":
|
|
966
|
-
".jp-CodeConsole-promptCell .jp-InputArea-editor:not(.jp-mod-has-primary-selection)"
|
|
1001
|
+
".jp-CodeConsole-promptCell .jp-InputArea-editor:not(.jp-mod-has-primary-selection):not(.jp-mod-in-leading-whitespace)"
|
|
967
1002
|
},
|
|
968
1003
|
"title": { "default": "Invoke Completer" },
|
|
969
1004
|
"category": { "default": "Tooltips" }
|
|
@@ -977,7 +1012,20 @@
|
|
|
977
1012
|
"keys": { "default": ["Shift Tab"] },
|
|
978
1013
|
"selector": {
|
|
979
1014
|
"default":
|
|
980
|
-
".jp-Notebook.jp-mod-editMode .jp-InputArea-editor:not(.jp-mod-has-primary-selection)"
|
|
1015
|
+
".jp-Notebook.jp-mod-editMode .jp-InputArea-editor:not(.jp-mod-has-primary-selection):not(.jp-mod-in-leading-whitespace)"
|
|
1016
|
+
},
|
|
1017
|
+
"title": { "default": "Invoke Completer" },
|
|
1018
|
+
"category": { "default": "Tooltips" }
|
|
1019
|
+
},
|
|
1020
|
+
"type": "object"
|
|
1021
|
+
},
|
|
1022
|
+
"tooltip:launch-file": {
|
|
1023
|
+
"default": {},
|
|
1024
|
+
"properties": {
|
|
1025
|
+
"command": { "default": "tooltip:launch-file" },
|
|
1026
|
+
"keys": { "default": ["Shift Tab"] },
|
|
1027
|
+
"selector": {
|
|
1028
|
+
"default": ".jp-FileEditor"
|
|
981
1029
|
},
|
|
982
1030
|
"title": { "default": "Invoke Completer" },
|
|
983
1031
|
"category": { "default": "Tooltips" }
|