Skip to content

Instantly share code, notes, and snippets.

@artem-bondar
Created November 23, 2019 12:37
Show Gist options
  • Save artem-bondar/4746d88d1f59fa3573567d974824a2c3 to your computer and use it in GitHub Desktop.
Save artem-bondar/4746d88d1f59fa3573567d974824a2c3 to your computer and use it in GitHub Desktop.
Visual Studio Code keybindings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+shift+/",
"command": "editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+a",
"command": "-editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+d",
"command": "editor.action.selectHighlights",
"when": "editorFocus"
},
{
"key": "ctrl+shift+l",
"command": "-editor.action.selectHighlights",
"when": "editorFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment