Skip to content

Instantly share code, notes, and snippets.

@shawnanastasio
Created July 9, 2022 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shawnanastasio/183984eb614092907ca5f097fb421db3 to your computer and use it in GitHub Desktop.
Save shawnanastasio/183984eb614092907ca5f097fb421db3 to your computer and use it in GitHub Desktop.
vscode keybindings.json
[
{
"key": "ctrl+k",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "ctrl+j",
"command": "workbench.action.terminal.focus",
"when": "!terminalFocus"
},
{
"key": "ctrl+f",
"command": "workbench.action.toggleMaximizedPanel",
"when": "terminalFocus"
},
{
"key": "ctrl+b",
"command": "-extension.vim_ctrl+b",
"when": "editorTextFocus && vim.active && vim.use<C-b> && !inDebugRepl && vim.mode != 'Insert'"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment