From 47c34d60236de66d70bae804162093fa048f3738 Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Mon, 10 Mar 2025 14:30:38 -0700 Subject: [PATCH] fix: Remove the toggle keyboard navigation action. --- src/navigation_controller.ts | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/navigation_controller.ts b/src/navigation_controller.ts index 724799c3..daf1d050 100644 --- a/src/navigation_controller.ts +++ b/src/navigation_controller.ts @@ -289,22 +289,6 @@ export class NavigationController { keyCodes: [KeyCodes.UP], }, - /** Turn keyboard navigation on or off. */ - toggleKeyboardNav: { - name: Constants.SHORTCUT_NAMES.TOGGLE_KEYBOARD_NAV, - callback: (workspace) => { - if (workspace.keyboardAccessibilityMode) { - this.navigation.disableKeyboardAccessibility(workspace); - } else { - this.navigation.enableKeyboardAccessibility(workspace); - } - return true; - }, - keyCodes: [ - createSerializedKey(KeyCodes.K, [KeyCodes.CTRL, KeyCodes.SHIFT]), - ], - }, - /** Go to the out location. */ out: { name: Constants.SHORTCUT_NAMES.OUT,