mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
78 lines
2.3 KiB
JSON
78 lines
2.3 KiB
JSON
|
// Place your key bindings in this file to override the defaultsauto[]
|
||
|
[
|
||
|
{
|
||
|
"key": "ctrl+j",
|
||
|
"command": "-workbench.action.togglePanel"
|
||
|
},
|
||
|
{
|
||
|
"key": "ctrl+j",
|
||
|
"command": "-vscode-neovim.send",
|
||
|
"when": "editorTextFocus && neovim.ctrlKeysInsert && neovim.mode == 'insert'"
|
||
|
},
|
||
|
{
|
||
|
"key": "ctrl+j",
|
||
|
"command": "-vscode-neovim.send",
|
||
|
"when": "editorTextFocus && neovim.ctrlKeysNormal && neovim.init && neovim.mode != 'insert'"
|
||
|
},
|
||
|
{
|
||
|
"key": "ctrl+j",
|
||
|
"command": "workbench.action.navigateDown"
|
||
|
},
|
||
|
{
|
||
|
"key": "ctrl+k",
|
||
|
"command": "-vscode-neovim.send",
|
||
|
"when": "editorTextFocus && neovim.ctrlKeysNormal && neovim.init && neovim.mode != 'insert'"
|
||
|
},
|
||
|
{
|
||
|
"key": "ctrl+k",
|
||
|
"command": "workbench.action.navigateUp"
|
||
|
},
|
||
|
{
|
||
|
"key": "ctrl+h",
|
||
|
"command": "-editor.action.startFindReplaceAction",
|
||
|
"when": "editorFocus || editorIsOpen"
|
||
|
},
|
||
|
{
|
||
|
"key": "ctrl+h",
|
||
|
"command": "-vscode-neovim.send",
|
||
|
"when": "editorTextFocus && neovim.ctrlKeysInsert && neovim.mode == 'insert'"
|
||
|
},
|
||
|
{
|
||
|
"key": "ctrl+h",
|
||
|
"command": "-vscode-neovim.send",
|
||
|
"when": "editorTextFocus && neovim.ctrlKeysNormal && neovim.init && neovim.mode != 'insert'"
|
||
|
},
|
||
|
{
|
||
|
"key": "ctrl+h",
|
||
|
"command": "-vscode-neovim.send-cmdline",
|
||
|
"when": "neovim.mode == 'cmdline_insert' || neovim.mode == 'cmdline_normal' || neovim.mode == 'cmdline_replace'"
|
||
|
},
|
||
|
{
|
||
|
"key": "ctrl+h",
|
||
|
"command": "workbench.action.navigateLeft"
|
||
|
},
|
||
|
{
|
||
|
"key": "ctrl+l",
|
||
|
"command": "-notebook.centerActiveCell",
|
||
|
"when": "notebookEditorFocused"
|
||
|
},
|
||
|
{
|
||
|
"key": "ctrl+l",
|
||
|
"command": "-expandLineSelection",
|
||
|
"when": "textInputFocus"
|
||
|
},
|
||
|
{
|
||
|
"key": "ctrl+l",
|
||
|
"command": "-vscode-neovim.send-cmdline",
|
||
|
"when": "neovim.mode == 'cmdline_insert' || neovim.mode == 'cmdline_normal' || neovim.mode == 'cmdline_replace'"
|
||
|
},
|
||
|
{
|
||
|
"key": "ctrl+l",
|
||
|
"command": "-vscode-neovim.send",
|
||
|
"when": "editorTextFocus && neovim.ctrlKeysNormal && neovim.init && neovim.mode != 'insert'"
|
||
|
},
|
||
|
{
|
||
|
"key": "ctrl+l",
|
||
|
"command": "workbench.action.navigateRight"
|
||
|
}
|
||
|
]
|