From e0a674d4f5eaea6c120fa38713913f7fbe67901b Mon Sep 17 00:00:00 2001 From: druckdev Date: Thu, 11 Feb 2021 18:41:16 +0100 Subject: [PATCH] VSCode: Add keybindings.json --- .config/VSCodium/User/keybindings.json | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .config/VSCodium/User/keybindings.json diff --git a/.config/VSCodium/User/keybindings.json b/.config/VSCodium/User/keybindings.json new file mode 100644 index 0000000..d033845 --- /dev/null +++ b/.config/VSCodium/User/keybindings.json @@ -0,0 +1,27 @@ +// Place your key bindings in this file to override the defaultsauto[] +[ + { + "key": "shift+backspace", + "command": "extension.vim_shift+backspace" + }, + { + "key": "shift+backspace", + "command": "-extension.vim_shift+backspace", + "when": "editorTextFocus && vim.active && vim.use && !inDebugRepl && vim.mode == 'CommandlineInProgress' || editorTextFocus && vim.active && vim.use && !inDebugRepl && vim.mode == 'SearchInProgressMode'" + }, + { + "key": "cmd+backspace", + "command": "extension.vim_ctrl+backspace", + "when": "editorTextFocus && vim.active && vim.use && !inDebugRepl && vim.mode == 'CommandlineInProgress' || editorTextFocus && vim.active && vim.use && !inDebugRepl && vim.mode == 'SearchInProgressMode'" + }, + { + "key": "alt+left", + "command": "extension.vim_ctrl+b", + "when": "editorTextFocus && vim.active && vim.use && !inDebugRepl" + }, + { + "key": "alt+right", + "command": "extension.vim_ctrl+e", + "when": "editorTextFocus && vim.active && vim.use && !inDebugRepl" + } +]