Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@JoshVarty
Last active November 23, 2020 18:32
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 JoshVarty/de62da5af3c0dceff815edc1f9175125 to your computer and use it in GitHub Desktop.
Save JoshVarty/de62da5af3c0dceff815edc1f9175125 to your computer and use it in GitHub Desktop.
My keybindings for VSCode.
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+k ctrl+o",
"command": "workbench.action.files.openFolder"
},
{
"key": "ctrl+o",
"command": "workbench.action.files.openFile"
},
{
"key": "capslock",
"command": "extension.vim_escape"
},
{
"key": "ctrl+f",
"command": "actions.find",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+=",
"command": "workbench.action.navigateForward",
},
{
"key": "ctrl+z",
"command": "undo",
"when": "editorTextFocus"
},
{
"key": "ctrl+y",
"command": "redo",
},
{
"key": "ctrl+a",
"command": "editor.action.selectAll",
},
{
"key": "ctrl+c",
"command": "editor.action.clipboardCopyAction",
},
{
"key": "ctrl+x",
"command": "editor.action.clipboardCutAction",
},
{
"key": "ctrl+w",
"command": "workbench.action.closeActiveEditor"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment