Skip to content

Instantly share code, notes, and snippets.

@krrg
Last active July 20, 2019 07:10
Show Gist options
  • Save krrg/34196ab979166647d661465d8d62ad40 to your computer and use it in GitHub Desktop.
Save krrg/34196ab979166647d661465d8d62ad40 to your computer and use it in GitHub Desktop.
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "home",
"command": "cursorHome",
"when": "editorTextFocus"
},
{
"key": "ctrl+a",
"command": "cursorHome",
"when": "editorTextFocus"
},
{
"key": "end",
"command": "cursorEnd",
"when": "editorTextFocus"
},
{
"key": "ctrl+e",
"command": "cursorEnd",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+a",
"command": "editor.action.selectAll"
},
{
"key": "ctrl+n",
"command": "explorer.newFile"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment