Skip to content

Instantly share code, notes, and snippets.

@cheeze2000
Last active June 8, 2025 09:57
Show Gist options
  • Save cheeze2000/8735188d446851f650d19e187786a64d to your computer and use it in GitHub Desktop.
Save cheeze2000/8735188d446851f650d19e187786a64d to your computer and use it in GitHub Desktop.
VSCode Keyboard Shortcuts
[
{
"key": "ctrl+h",
"command": "workbench.view.explorer",
"when": "editorFocus || filesExplorerFocus"
},
{
"key": "ctrl+l",
"command": "workbench.action.focusFirstEditorGroup",
"when": "editorFocus || filesExplorerFocus"
},
{
"key": "tab",
"command": "list.toggleExpand",
"when": "filesExplorerFocus"
},
{
"key": "enter",
"command": "list.select",
"when": "filesExplorerFocus && !inputFocus"
},
{
"key": "ctrl+j",
"command": "selectNextCodeAction",
"when": "codeActionMenuVisible"
},
{
"key": "ctrl+k",
"command": "selectPrevCodeAction",
"when": "codeActionMenuVisible"
},
{
"key": "ctrl+[",
"command": "hideCodeActionWidget",
"when": "codeActionMenuVisible"
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment