Skip to content

Instantly share code, notes, and snippets.

@favio41
Last active October 16, 2019 16:03
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 favio41/20b6c88a90e7615cdad3bef64849f717 to your computer and use it in GitHub Desktop.
Save favio41/20b6c88a90e7615cdad3bef64849f717 to your computer and use it in GitHub Desktop.
keyboard shortcuts for vscode (open keyboard shortcuts)
[
{
"key": "cmd+k cmd+e",
"command": "-keybindings.editor.defineWhenExpression",
"when": "inKeybindings && keybindingFocus"
},
{
"key": "cmd+k cmd+e",
"command": "eslint.executeAutofix"
},
{
"key": "cmd+k cmd+s",
"command": "git.stageSelectedRanges",
"when": "isInDiffEditor && editorTextFocus"
},
{
"key": "cmd+k cmd+u",
"command": "git.unstageSelectedRanges",
"when": "isInDiffEditor && editorTextFocus"
},
{
"key": "cmd+k cmd+r",
"command": "git.revertSelectedRanges",
"when": "isInDiffEditor && editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment