Skip to content

Instantly share code, notes, and snippets.

@Darkside73
Created July 25, 2023 09:29
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 Darkside73/b1febb6ba09b1338f89422833be39d0a to your computer and use it in GitHub Desktop.
Save Darkside73/b1febb6ba09b1338f89422833be39d0a to your computer and use it in GitHub Desktop.
vscode keybindings
[
{
"key": "ctrl+cmd+p",
"command": "workbench.action.quickOpenRecent"
},
{
"key": "alt+cmd+r",
"command": "-revealFileInOS",
"when": "!editorFocus"
},
{
"key": "shift+alt+r",
"command": "workbench.files.action.showActiveFileInExplorer"
},
{
"key": "cmd+. cmd+.",
"command": "eslint.executeAutofix"
},
{
"key": "cmd+t",
"command": "-workbench.action.quickOpen"
},
{
"key": "cmd+t",
"command": "-workbench.action.showAllSymbols"
},
{
"key": "cmd+t",
"command": "extension.transpose"
},
{
"key": "cmd+shift+a",
"command": "editor.emmet.action.balanceOut"
},
{
"key": "alt+shift+p",
"command": "workbench.action.openRecent"
},
{
"key": "f8",
"command": "-editor.action.marker.nextInFiles",
"when": "editorFocus"
},
{
"key": "f8",
"command": "editor.action.removeDuplicateLines"
},
{
"key": "cmd+k cmd+v",
"command": "clipboard.pasteFromClipboard",
"when": "editorTextFocus"
},
{
"key": "cmd+shift+d",
"command": "geeebe.duplicateText",
"when": "editorTextFocus"
},
{
"key": "cmd+shift+\\",
"when": "editorFocus",
"command": "editor.action.insertSnippet",
"args": {
"snippet": "{{ ${TM_SELECTED_TEXT}$0 }}"
}
},
{
"key": "cmd+alt+f",
"command": "stylelint.executeAutofix"
},
{
"key": "cmd+shift+r",
"command": "extension.multiCommand.execute",
"args": {
"sequence": [
"editor.action.insertLineAfter",
"cursorUp",
"editor.action.deleteLines"
]
}
},
{
"key": "ctrl+shift+i",
"command": "interactiveEditor.start",
"when": "interactiveEditorHasProvider && !editorReadonly"
},
{
"key": "cmd+i",
"command": "-interactiveEditor.start",
"when": "interactiveEditorHasProvider && !editorReadonly"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment