You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/labCommands.ts
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -166,7 +166,7 @@ export function addNotebookCommands(
166
166
isEnabled
167
167
}),
168
168
commands.addCommand('vim:leave-current-mode',{
169
-
label: 'Move Insert to Normal to Jupyter Command Mode"',
169
+
label: 'Move Insert to Normal to Jupyter Command Mode',
170
170
execute: args=>{
171
171
constcurrent=getCurrent(args);
172
172
@@ -284,6 +284,14 @@ export function addNotebookCommands(
284
284
}
285
285
},
286
286
isEnabled
287
+
}),
288
+
commands.addCommand('vim:no-action',{
289
+
label: 'Prevent Default Browser Action',
290
+
caption:
291
+
'Prevent default action for some keybindings (defined in the settings); for example Firefox binds Shift + Esc to its Process Manager which conflicts with the expected action in the vim mode.',
0 commit comments