Skip to content

Instantly share code, notes, and snippets.

@Griffingj
Created December 26, 2016 01:36
Show Gist options
  • Save Griffingj/c96826d98be89e6b99fe8f24ae6c0146 to your computer and use it in GitHub Desktop.
Save Griffingj/c96826d98be89e6b99fe8f24ae6c0146 to your computer and use it in GitHub Desktop.
VsCode Keybindings for Windows
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "ctrl+up", "command": "cursorTop" },
{ "key": "ctrl+shift+up", "command": "cursorTopSelect" },
{ "key": "ctrl+down", "command": "cursorBottom" },
{ "key": "ctrl+shift+down", "command": "cursorBottomSelect" },
{ "key": "ctrl+left", "command": "cursorHome" },
{ "key": "ctrl+shift+left", "command": "cursorHomeSelect" },
{ "key": "ctrl+right", "command": "cursorEnd" },
{ "key": "ctrl+shift+right", "command": "cursorEndSelect" },
{ "key": "alt+left", "command": "cursorWordLeft" },
{ "key": "alt+shift+left", "command": "cursorWordLeftSelect" },
{ "key": "alt+right", "command": "cursorWordRight" },
{ "key": "alt+shift+right", "command": "cursorWordRightSelect" },
{ "key": "ctrl+shift+right", "command": "cursorEndSelect" },
{ "key": "ctrl+backspace", "command": "deleteAllLeft", "when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+shift+backspace", "command": "deleteAllRight", "when": "editorTextFocus && !editorReadonly" },
{ "key": "alt+backspace", "command": "deleteWordEndLeft", "when": "editorTextFocus && !editorReadonly" },
{ "key": "alt+shift+backspace", "command": "deleteWordEndRight", "when": "editorTextFocus && !editorReadonly" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment