Skip to content

Instantly share code, notes, and snippets.

@cheeze2000
Last active March 7, 2024 16:21
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": "-editor.action.startFindReplaceAction"
},
{
"key": "ctrl+h",
"command": "workbench.view.explorer",
"when": "editorFocus"
},
{
"key": "ctrl+l",
"command": "workbench.action.focusFirstEditorGroup",
"when": "filesExplorerFocus"
},
{
"key": "tab",
"command": "list.toggleExpand",
"when": "filesExplorerFocus"
},
{
"key": "a",
"command": "explorer.newFile",
"when": "filesExplorerFocus && !inputFocus"
},
{
"key": "c",
"command": "filesExplorer.copy",
"when": "filesExplorerFocus && !inputFocus"
},
{
"key": "d",
"command": "deleteFile",
"when": "filesExplorerFocus && !inputFocus"
},
{
"key": "r",
"command": "renameFile",
"when": "filesExplorerFocus && !inputFocus"
},
{
"key": "v",
"command": "filesExplorer.paste",
"when": "filesExplorerFocus && !inputFocus"
},
{
"key": "x",
"command": "filesExplorer.cut",
"when": "filesExplorerFocus && !inputFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment