Skip to content

Instantly share code, notes, and snippets.

@dagolinuxoid
Created September 19, 2017 05:55
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 dagolinuxoid/3edc1fa42a67e43513f2d4055ed0d171 to your computer and use it in GitHub Desktop.
Save dagolinuxoid/3edc1fa42a67e43513f2d4055ed0d171 to your computer and use it in GitHub Desktop.
vs code | keybindings.json
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "ctrl+h", "command": "cursorLeft",
"when": "editorTextFocus" },
{ "key": "ctrl+j", "command": "cursorRight",
"when": "editorTextFocus" },
{ "key": "ctrl+u", "command": "cursorUp",
"when": "editorTextFocus" },
{ "key": "ctrl+l", "command": "cursorDown",
"when": "editorTextFocus" },
{ "key": "ctrl+;", "command": "cursorEnd",
"when": "editorTextFocus" },
{ "key": "ctrl+i", "command": "cursorHome",
"when": "editorTextFocus" },
{ "key": "ctrl+l", "command": "selectNextSuggestion",
"when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible" },
{ "key": "ctrl+u", "command": "selectPrevSuggestion",
"when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible" },
{ "key": "ctrl+p", "command": "cursorEndSelect",
"when": "editorTextFocus" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment