Skip to content

Instantly share code, notes, and snippets.

@arthurattwell
Last active September 21, 2019 13:47
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 arthurattwell/d0cbff6af52cd985353e9fa36a7edd03 to your computer and use it in GitHub Desktop.
Save arthurattwell/d0cbff6af52cd985353e9fa36a7edd03 to your computer and use it in GitHub Desktop.
VS Code key bindings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+k",
"command": "extension.changeCase.commands",
"when": "editorTextFocus"
},
{
"key": "ctrl+tab",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.terminal.focusPrevious"
},
{
"key": "ctrl+pageup",
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+pagedown",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+shift+s",
"command": "workbench.action.files.saveAs"
},
{
"key": "'",
"command": "editor.action.insertSnippet",
"when": "editorLangId == markdown && editorTextFocus && editorHasSelection",
"args": {
"snippet": "'$TM_SELECTED_TEXT$0'"
}
},
{
"key": "shift+'",
"command": "editor.action.insertSnippet",
"when": "editorLangId == markdown && editorTextFocus && editorHasSelection",
"args": {
"snippet": "\"$TM_SELECTED_TEXT$0\""
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment