Skip to content

Instantly share code, notes, and snippets.

@jakub-g
Last active July 15, 2021 12:17
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 jakub-g/9034282921a7ab075b8b6f6ac1aacc45 to your computer and use it in GitHub Desktop.
Save jakub-g/9034282921a7ab075b8b6f6ac1aacc45 to your computer and use it in GitHub Desktop.
vscode keybindings dell
[
{
"key": "ctrl+i escape",
"when": "editorTextFocus",
"command": "moveby.calculation",
"args": {
"lineNrEx": "selections[selections.length-1].start.line",
"charNrEx": "selections[selections.length-1].start.character"
}
},
{ "key": "ctrl+tab", "command": "workbench.action.nextEditor" },
{ "key": "ctrl+shift+tab", "command": "workbench.action.previousEditor" },
{
"key": "ctrl+shift+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{ "key": "ctrl+k ctrl+k", "command": "workbench.action.quickOpen" },
{
"key": "ctrl+l ctrl+c",
"command": "extension.gitHubUrl",
"when": "editorTextFocus"
},
{
"key": "ctrl+l c",
"command": "-extension.gitHubUrl",
"when": "editorTextFocus"
},
{
"key": "ctrl+0",
"command": "-workbench.action.focusSideBar"
},
{
"key": "ctrl+0",
"command": "search.action.focusSearchList"
},
{
"key": "ctrl+enter",
"command": "editor.action.revealDefinition",
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
},
{
"key": "f12",
"command": "-editor.action.revealDefinition",
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
},
{
"key": "ctrl+e",
"command": "-workbench.action.quickOpen"
},
{
"key": "ctrl+e",
"command": "-workbench.action.quickOpenNavigateNextInFilePicker",
"when": "inFilesPicker && inQuickOpen"
},
{
"key": "ctrl+e",
"command": "workbench.explorer.fileView.focus"
},
{
"key": "enter",
"command": "multiCommand.openFileKeepFocusInExplorer",
"when": "sideBarFocus && activeViewlet == 'workbench.view.explorer'"
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment