Skip to content

Instantly share code, notes, and snippets.

@sebolio
Created August 3, 2015 23:23
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 sebolio/97e594c651751756ccf6 to your computer and use it in GitHub Desktop.
Save sebolio/97e594c651751756ccf6 to your computer and use it in GitHub Desktop.
teclado vscode windows
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "ctrl+r", "command": "workbench.action.gotoSymbol",
"when": "editorFocus" },
{ "key": "ctrl+p", "command": "workbench.action.showCommands" },
{ "key": "ctrl+o", "command": "workbench.action.quickOpen" },
{ "key": "shift+alt+c", "command": "editor.action.commentLine",
"when": "editorTextFocus" },
{ "key": "ctrl+shift+c", "command": "editor.action.commentLine",
"when": "editorTextFocus" },
{ "key": "ctrl+alt+c", "command": "workbench.action.terminal.openNativeConsole" },
{ "key": "ctrl+e", "command": "workbench.action.tasks.runTask" },
{ "key": "ctrl+shift+e", "command": "workbench.action.tasks.terminate" },
{ "key": "shift+alt+d", "command": "editor.action.deleteLines",
"when": "editorTextFocus" },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment