From db20999ed743822970bf49488f76fb47a0dd540e Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 4 Jun 2025 17:06:24 +0100 Subject: [PATCH] chore(keybind): fix ctrl+x ctrl+i (ctrl+x tab) --- keybindings.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/keybindings.json b/keybindings.json index 222675e..50e039c 100644 --- a/keybindings.json +++ b/keybindings.json @@ -268,6 +268,14 @@ "command": "workbench.action.focusPreviousGroup", "when": "!terminalFocus" }, + { // Focus previous editor group. + // + // This is a workaround for ctrl+i typically being interpreted as tab by + // some Karabiner-Elements configurations. + "key": "ctrl+x tab", + "command": "workbench.action.focusPreviousGroup", + "when": "!terminalFocus" + }, { // Navigate up. "key": "alt+i", "command": "workbench.action.navigateUp",