Skip to content

Instantly share code, notes, and snippets.

@kaiye
Created April 6, 2017 07:22
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 kaiye/5d3b9826d7cb745b23dbc73911a9b606 to your computer and use it in GitHub Desktop.
Save kaiye/5d3b9826d7cb745b23dbc73911a9b606 to your computer and use it in GitHub Desktop.
vscode key bindings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "cmd+e",
"command": "editor.action.smartSelect.grow",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+e",
"command": "editor.action.smartSelect.shrink",
"when": "editorTextFocus"
},
{
"key": "alt+f",
"command": "workbench.action.files.revealActiveFileInWindows"
},
{
"key": "cmd+shift+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+f",
"command": "format.standard",
"when": "editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment