From 4f259481f4ed2408e745a344ad359b6b6aed6083 Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Sun, 7 Jun 2020 16:06:25 -0500 Subject: [PATCH] - Added back vscode keybindings json file --- xkeysnail-config/vscode_keybindings.json | 31 ++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 xkeysnail-config/vscode_keybindings.json diff --git a/xkeysnail-config/vscode_keybindings.json b/xkeysnail-config/vscode_keybindings.json new file mode 100644 index 0000000..750f5ac --- /dev/null +++ b/xkeysnail-config/vscode_keybindings.json @@ -0,0 +1,31 @@ +// Place your key bindings in this file to override the defaultsauto[] +[ + { + "key": "alt+left", + "command": "-workbench.action.terminal.focusPreviousPane", + "when": "terminalFocus" + }, + { + "key": "alt+right", + "command": "-workbench.action.terminal.focusNextPane", + "when": "terminalFocus" + }, + { + "key": "alt+right", + "command": "cursorWordRight" + }, + { + "key": "alt+left", + "command": "cursorWordLeft" + }, + { + "key": "shift+alt+left", + "command": "cursorWordStartLeftSelect", + "when": "textInputFocus" + }, + { + "key": "shift+alt+right", + "command": "cursorWordEndRightSelect", + "when": "textInputFocus" + } +] \ No newline at end of file