Skip to content

Instantly share code, notes, and snippets.

@lukasmatta
Last active May 9, 2024 12:14
Show Gist options
  • Save lukasmatta/a41f815dab951a32c9f37332150a5b91 to your computer and use it in GitHub Desktop.
Save lukasmatta/a41f815dab951a32c9f37332150a5b91 to your computer and use it in GitHub Desktop.
VSCode Shortcuts
[
{
"key": "cmd+n",
"command": "explorer.newFile",
"when": "!editorFocus"
},
{
"key": "cmd+shift+n",
"command": "explorer.newFolder",
"when": "!editorFocus"
},
{
"key": "cmd+down",
"command": "workbench.action.compareEditor.nextChange",
"when": "textCompareEditorVisible"
},
{
"key": "cmd+up",
"command": "workbench.action.compareEditor.previousChange",
"when": "textCompareEditorVisible"
},
{
"key": "ctrl+shift+q",
"command": "git.openFile",
"when": "editorFocus && isInDiffEditor"
},
{
"key": "ctrl+shift+q",
"command": "git.openChange",
"when": "editorFocus && !isInDiffEditor"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment