Skip to content

Instantly share code, notes, and snippets.

@zionyx
Created March 28, 2017 09:58
Show Gist options
  • Save zionyx/9cf572ffcae87a143e71ed268275c3e8 to your computer and use it in GitHub Desktop.
Save zionyx/9cf572ffcae87a143e71ed268275c3e8 to your computer and use it in GitHub Desktop.
Personal vscode keybindings. Also fixes an annoyance: Escape to close Find widget window when it is focused.
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "ctrl+shift+o", "command": "workbench.action.files.openFolder" },
{ "key": "ctrl+k ctrl+d", "command": "editor.action.formatDocument" },
{ "key": "escape", "command": "closeFindWidget",
"when": "findWidgetFocus && findWidgetVisible" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment