Last active
November 23, 2020 18:32
-
-
Save JoshVarty/de62da5af3c0dceff815edc1f9175125 to your computer and use it in GitHub Desktop.
My keybindings for VSCode.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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