28 lines
1.1 KiB
JSON
28 lines
1.1 KiB
JSON
// 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"
|
|
}
|
|
]
|