Skip to content

Instantly share code, notes, and snippets.

@willcode4food
Created December 3, 2025 17:53
Show Gist options
  • Select an option

  • Save willcode4food/f55e12cbcbde98b103fe07ad7b965a30 to your computer and use it in GitHub Desktop.

Select an option

Save willcode4food/f55e12cbcbde98b103fe07ad7b965a30 to your computer and use it in GitHub Desktop.
Key Bindings
// Empty
[
{
"key": "ctrl+shift+l",
"command": "editor.action.insertCursorAtEndOfEachLineSelected",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+l",
"command": "-editor.action.insertCursorAtEndOfEachLineSelected",
"when": "editorTextFocus"
},
{
"key": "alt+cmd+s",
"command": "workbench.action.files.saveAs"
},
{
"key": "shift+cmd+s",
"command": "-workbench.action.files.saveAs"
},
{
"key": "shift+cmd+s",
"command": "workbench.action.files.saveAll"
},
{
"key": "alt+cmd+s",
"command": "-workbench.action.files.saveAll"
},
{
"key": "shift+cmd+s",
"command": "saveAll"
},
{
"key": "alt+cmd+s",
"command": "-saveAll"
},
{
"key": "cmd+[",
"command": "workbench.action.navigateBack"
},
{
"key": "ctrl+-",
"command": "-workbench.action.navigateBack"
},
{
"key": "cmd+]",
"command": "workbench.action.navigateForward"
},
{
"key": "ctrl+shift+-",
"command": "-workbench.action.navigateForward"
},
{
"key": "alt+cmd+,",
"command": "references-view.findReferences",
"when": "editorHasReferenceProvider"
},
{
"key": "shift+alt+f12",
"command": "-references-view.findReferences",
"when": "editorHasReferenceProvider"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment