Skip to content

Instantly share code, notes, and snippets.

View plipp's full-sized avatar

Patricia Lipp plipp

View GitHub Profile
@plipp
plipp / keybindings.json
Created November 7, 2025 16:36
VSCode Keybindings MacOS Classic
[
// Navigation
{ "key": "cmd+b", "command": "editor.action.revealDefinition" },
{ "key": "cmd+b", "command": "editor.action.goToDeclaration", "when": "editorHasDefinitionProvider && editorTextFocus" },
{ "key": "ctrl+shift+b", "command": "editor.action.goToTypeDefinition" },
{ "key": "cmd+n", "command": "workbench.action.quickOpen" },
{ "key": "cmd+shift+n", "command": "workbench.action.findInFiles" },
{ "key": "cmd+shift+alt+n", "command": "workbench.action.showAllSymbols" },
{ "key": "cmd+e", "command": "workbench.action.quickOpenPreviousRecentlyUsedEditorInGroup" },
{ "key": "cmd+shift+e", "command": "workbench.action.showAllEditors" },