VSCode: Add keybindings.json
This commit is contained in:
27
.config/VSCodium/User/keybindings.json
Normal file
27
.config/VSCodium/User/keybindings.json
Normal file
@@ -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<shift+BS> && !inDebugRepl && vim.mode == 'CommandlineInProgress' || editorTextFocus && vim.active && vim.use<shift+BS> && !inDebugRepl && vim.mode == 'SearchInProgressMode'"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "cmd+backspace",
|
||||||
|
"command": "extension.vim_ctrl+backspace",
|
||||||
|
"when": "editorTextFocus && vim.active && vim.use<C-BS> && !inDebugRepl && vim.mode == 'CommandlineInProgress' || editorTextFocus && vim.active && vim.use<C-BS> && !inDebugRepl && vim.mode == 'SearchInProgressMode'"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "alt+left",
|
||||||
|
"command": "extension.vim_ctrl+b",
|
||||||
|
"when": "editorTextFocus && vim.active && vim.use<C-b> && !inDebugRepl"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "alt+right",
|
||||||
|
"command": "extension.vim_ctrl+e",
|
||||||
|
"when": "editorTextFocus && vim.active && vim.use<C-e> && !inDebugRepl"
|
||||||
|
}
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user