Skip to content

Instantly share code, notes, and snippets.

@pranavmishra90
Created November 3, 2022 22:05
Show Gist options
  • Save pranavmishra90/9da8a0be6f2308b1bf81d1386ae2b588 to your computer and use it in GitHub Desktop.
Save pranavmishra90/9da8a0be6f2308b1bf81d1386ae2b588 to your computer and use it in GitHub Desktop.
VSCode Keybindings
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+shift+e",
"command": "editor.action.insertSnippet",
"when": "editorTextFocus",
"args":
{"snippet": "<span class='abnormallab'>${TM_SELECTED_TEXT}</span>"}
},
{
"key": "ctrl+shift+-",
"command": "editor.action.insertSnippet",
"when": "editorTextFocus",
"args":
{"snippet": "<span class='strikethrough'>${TM_SELECTED_TEXT}</span>"}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment