Skip to content

Instantly share code, notes, and snippets.

@diegotf30
Last active May 30, 2019 21:56
Show Gist options
  • Save diegotf30/bce471bb173b275ad150c20207975e27 to your computer and use it in GitHub Desktop.
Save diegotf30/bce471bb173b275ad150c20207975e27 to your computer and use it in GitHub Desktop.
VSCode Settings
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+g",
"command": "-workbench.action.gotoLine"
},
{
"key": "ctrl+t",
"command": "-workbench.action.showAllSymbols"
},
{
"key": "ctrl+n",
"command": "workbench.action.newWindow"
},
{
"key": "ctrl+shift+n",
"command": "-workbench.action.newWindow"
},
{
"key": "ctrl+t",
"command": "workbench.action.files.newUntitledFile"
},
{
"key": "ctrl+n",
"command": "-workbench.action.files.newUntitledFile"
},
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+pagedown",
"command": "-workbench.action.nextEditor"
},
{
"key": "ctrl+tab",
"command": "-workbench.action.openNextRecentlyUsedEditorInGroup"
},
{
"key": "ctrl+tab",
"command": "-workbench.action.quickOpenNavigateNextInEditorPicker",
"when": "inEditorsPicker && inQuickOpen"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+pageup",
"command": "-workbench.action.previousEditor"
},
{
"key": "ctrl+shift+tab",
"command": "-workbench.action.openPreviousRecentlyUsedEditorInGroup"
},
{
"key": "ctrl+shift+tab",
"command": "-workbench.action.quickOpenNavigatePreviousInEditorPicker",
"when": "inEditorsPicker && inQuickOpen"
},
{
"key": "ctrl+p",
"command": "-workbench.action.quickOpen"
},
{
"key": "ctrl+g",
"command": "workbench.action.quickOpen"
},
{
"key": "ctrl+g",
"command": "workbench.action.showAllSymbols",
"when": "editorLangId == 'cpp'"
},
{
"key": "ctrl+g",
"command": "workbench.action.showAllSymbols",
"when": "editorLangId == 'c'"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment