Skip to content

Instantly share code, notes, and snippets.

@massahud
Created November 10, 2025 12:38
Show Gist options
  • Select an option

  • Save massahud/a90ca0bf2dd0850be7b21e51dda84366 to your computer and use it in GitHub Desktop.

Select an option

Save massahud/a90ca0bf2dd0850be7b21e51dda84366 to your computer and use it in GitHub Desktop.
vscode keybindings
// Place your key bindings in this file to override the defaults
[
{
"key": "alt+cmd+u",
"command": "editor.action.transformToUppercase"
},
{
"key": "shift+alt+cmd+u",
"command": "editor.action.transformToLowercase"
},
// go to previous editor location when available
{
"key": "alt+cmd+left",
"command": "workbench.action.navigateBack",
"when": "editorFocus && canNavigateBack"
},
// go to next editor location when available
{
"key": "alt+cmd+right",
"command": "workbench.action.navigateForward",
"when": "editorFocus && canNavigateForward"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment