Created
July 25, 2023 09:29
-
-
Save Darkside73/b1febb6ba09b1338f89422833be39d0a to your computer and use it in GitHub Desktop.
vscode keybindings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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