Skip to content

Instantly share code, notes, and snippets.

@DamianRivas
Created August 30, 2021 21:56
Show Gist options
  • Save DamianRivas/8a98a8ad1a382b91c0803e347db96adf to your computer and use it in GitHub Desktop.
Save DamianRivas/8a98a8ad1a382b91c0803e347db96adf to your computer and use it in GitHub Desktop.
VS Code Keybindings JSON
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+; ctrl+j",
"command": "workbench.action.togglePanel"
},
{
"key": "ctrl+j",
"command": "-workbench.action.togglePanel"
},
{
"key": "ctrl+k ctrl+m",
"command": "editor.action.toggleMinimap"
},
/**
* Emmet
**/
{
"key": "ctrl+m ctrl+i",
"command": "editor.emmet.action.balanceIn",
"when": "editorTextFocus"
},
{
"key": "ctrl+m ctrl+o",
"command": "editor.emmet.action.balanceOut",
"when": "editorTextFocus"
},
{
"key": "ctrl+m ctrl+w",
"command": "editor.emmet.action.wrapWithAbbreviation",
"when": "editorTextFocus"
},
{
"key": "ctrl+m ctrl+m",
"command": "editor.emmet.action.matchTag",
"when": "editorTextFocus"
},
{
"key": "ctrl+m ctrl+e",
"command": "editor.action.smartSelect.expand",
"when": "editorTextFocus"
},
{
"key": "ctrl+m ctrl+r",
"command": "editor.emmet.action.updateTag",
"when": "editorTextFocus"
},
{
"key": "ctrl+m ctrl+n",
"command": "editor.emmet.action.nextEditPoint",
"when": "editorTextFocus"
},
{
"key": "ctrl+m ctrl+p",
"command": "editor.emmet.action.prevEditPoint",
"when": "editorTextFocus"
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment