Skip to content

Instantly share code, notes, and snippets.

@PlugFox
Created January 20, 2023 15:43
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 PlugFox/2e7b200f084ce9f17b3f31d3f8018d2b to your computer and use it in GitHub Desktop.
Save PlugFox/2e7b200f084ce9f17b3f31d3f8018d2b to your computer and use it in GitHub Desktop.
VSCode Keyboard Shortcuts
[
{
"key": "shift+alt+`",
"command": "workbench.action.showCommands"
},
{
"key": "shift+cmd+p",
"command": "-workbench.action.showCommands"
},
{
"key": "ctrl+enter",
"command": "editor.action.quickFix",
"when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly"
},
{
"key": "cmd+.",
"command": "-editor.action.quickFix",
"when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+space",
"command": "problems.action.showQuickFixes",
"when": "problemFocus"
},
{
"key": "cmd+.",
"command": "-problems.action.showQuickFixes",
"when": "problemFocus"
},
{
"key": "shift+alt+cmd+u",
"command": "editor.action.transformToUppercase"
},
{
"key": "shift+alt+cmd+s",
"command": "editor.action.transformToSnakecase"
},
{
"key": "shift+alt+cmd+t",
"command": "editor.action.transformToTitlecase"
},
{
"key": "shift+alt+cmd+l",
"command": "editor.action.transformToLowercase"
},
{
"key": "ctrl+shift+enter",
"command": "github.copilot.generate",
"when": "editorTextFocus && github.copilot.activated"
},
{
"key": "ctrl+enter",
"command": "-github.copilot.generate",
"when": "editorTextFocus && github.copilot.activated"
},
{
"key": "shift shift",
"command": "workbench.action.showCommands"
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment