Skip to content

Instantly share code, notes, and snippets.

@ppazos
Created April 15, 2024 18:25
Show Gist options
  • Save ppazos/a8ad5a2a98aa20e29679ad058b105db3 to your computer and use it in GitHub Desktop.
Save ppazos/a8ad5a2a98aa20e29679ad058b105db3 to your computer and use it in GitHub Desktop.
Useful keybindings for vscode
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+alt+r",
"command": "workbench.files.action.showActiveFileInExplorer"
},
{
"key": "ctrl+alt+tab",
"command": "type",
"args": {
"text": "\t"
},
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+b",
"scope": "html",
"command": "editor.action.insertSnippet",
"when": "editorLangId =~ /php|html/ && editorTextFocus",
"args": {
"snippet": "<b>${TM_SELECTED_TEXT}</b>$0"
}
},
{
"key": "ctrl+shift+b",
"command": "-workbench.action.tasks.build",
"when": "taskCommandsRegistered"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment