Skip to content

Instantly share code, notes, and snippets.

@andys8
Last active July 16, 2018 11:54
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 andys8/ba7a550fa2c34473f1dd64419bbf7637 to your computer and use it in GitHub Desktop.
Save andys8/ba7a550fa2c34473f1dd64419bbf7637 to your computer and use it in GitHub Desktop.
VS Code Keybindings
[
{
"key": "ctrl+shift+s",
"command": "workbench.action.files.saveAll"
},
{
"key": "shift+enter",
"command": "extension.aceJump",
},
{
"key": "alt+enter",
"command": "extension.aceJump",
},
{
"key": "alt+l",
"command": "editor.action.smartSelect.grow",
"when": "editorTextFocus"
},
{
"key": "alt+right",
"command": "editor.action.smartSelect.grow",
"when": "editorTextFocus"
},
{
"key": "alt+h",
"command": "editor.action.smartSelect.shrink",
"when": "editorTextFocus"
},
{
"key": "alt+left",
"command": "editor.action.smartSelect.shrink",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+w",
"command": "editor.action.smartSelect.shrink",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+[Period]",
"command": "editor.action.showHover",
"when": "editorTextFocus"
},
{
"key": "alt+j",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+k",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+tab",
"command": "workbench.action.focusNextGroup"
},
{
"key": "shift+alt+tab",
"command": "workbench.action.focusPreviousGroup"
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment