Skip to content

Commit fc17d3d

Browse files
authored
fix: Remove the toggle keyboard navigation action. (#308)
1 parent fd0b890 commit fc17d3d

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

src/navigation_controller.ts

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -289,22 +289,6 @@ export class NavigationController {
289289
keyCodes: [KeyCodes.UP],
290290
},
291291

292-
/** Turn keyboard navigation on or off. */
293-
toggleKeyboardNav: {
294-
name: Constants.SHORTCUT_NAMES.TOGGLE_KEYBOARD_NAV,
295-
callback: (workspace) => {
296-
if (workspace.keyboardAccessibilityMode) {
297-
this.navigation.disableKeyboardAccessibility(workspace);
298-
} else {
299-
this.navigation.enableKeyboardAccessibility(workspace);
300-
}
301-
return true;
302-
},
303-
keyCodes: [
304-
createSerializedKey(KeyCodes.K, [KeyCodes.CTRL, KeyCodes.SHIFT]),
305-
],
306-
},
307-
308292
/** Go to the out location. */
309293
out: {
310294
name: Constants.SHORTCUT_NAMES.OUT,

0 commit comments

Comments
 (0)