27 lines
642 B
JSON
27 lines
642 B
JSON
|
|
[
|
||
|
|
// {
|
||
|
|
// "key": "ctrl+3",
|
||
|
|
// "command": "workbench.action.terminal.focus"
|
||
|
|
// },
|
||
|
|
{
|
||
|
|
"key": "ctrl+alt+b",
|
||
|
|
"command": "workbench.action.toggleActivityBarVisibility"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"key": "ctrl+b",
|
||
|
|
"command": "workbench.action.toggleSidebarVisibility"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"command": "vscode-neovim.compositeEscape1",
|
||
|
|
"key": "j",
|
||
|
|
"when": "neovim.mode == insert && editorTextFocus",
|
||
|
|
"args": "j"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"command": "vscode-neovim.compositeEscape2",
|
||
|
|
"key": "k",
|
||
|
|
"when": "neovim.mode == insert && editorTextFocus",
|
||
|
|
"args": "k"
|
||
|
|
}
|
||
|
|
]
|