Last active
January 12, 2026 14:23
-
-
Save alanhe421/5d5b95840ffe8faa1e29aec8f0092b04 to your computer and use it in GitHub Desktop.
hotkey for vsc
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
| // Place your key bindings in this file to override the defaultsauto[] | |
| [ | |
| { | |
| "key": "alt+f2", | |
| "command": "extension.openInDefaultBrowser" | |
| }, | |
| { | |
| "key": "cmd+down", | |
| "command": "git.openFile", | |
| "when": "isInDiffEditor" | |
| }, | |
| { | |
| "key": "cmd+k", | |
| "command": "workbench.action.terminal.clear", | |
| "when": "terminalFocus" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment