Skip to content

Instantly share code, notes, and snippets.

@tsaiid
Created February 1, 2018 00:18
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 tsaiid/8af6f35e397e8a59255fdaa695461926 to your computer and use it in GitHub Desktop.
Save tsaiid/8af6f35e397e8a59255fdaa695461926 to your computer and use it in GitHub Desktop.
my vscode-win-keybindings.json
[
{
"key": "ctrl+a",
"command": "cursorHome",
"when": "editorTextFocus"
},
{
"key": "ctrl+e",
"command": "cursorEnd",
"when": "editorTextFocus"
},
{
"key": "ctrl+d",
"command": "deleteRight",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+h",
"command": "deleteLeft",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "win+a",
"command": "editor.action.selectAll"
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment