Created
June 8, 2025 10:32
-
-
Save tongtunggiang/820a03b1f2a33585d7694134a63af645 to your computer and use it in GitHub Desktop.
VAX keybindings for VSCode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Place your key bindings in this file to override the defaults | |
| [ | |
| { | |
| "key": "shift+alt+o", | |
| "command": "workbench.action.quickOpenNavigateNextInFilePicker", | |
| "when": "inFilesPicker && inQuickOpen" | |
| }, | |
| { | |
| "key": "shift+alt+o", | |
| "command": "-editor.action.organizeImports", | |
| "when": "textInputFocus && !editorReadonly && supportedCodeAction =~ /(\\s|^)source\\.organizeImports\\b/" | |
| }, | |
| { | |
| "key": "shift+alt+s", | |
| "command": "workbench.action.showAllSymbols" | |
| }, | |
| { | |
| "key": "alt+g", | |
| "command": "editor.action.revealDefinition", | |
| "when": "editorHasDefinitionProvider && editorTextFocus" | |
| }, | |
| { | |
| "key": "shift+alt+f", | |
| "command": "references-view.findReferences", | |
| "when": "editorHasReferenceProvider" | |
| }, | |
| { | |
| "key": "shift+alt+f", | |
| "command": "-filesExplorer.findInFolder", | |
| "when": "explorerResourceIsFolder && filesExplorerFocus && foldersViewVisible && !inputFocus" | |
| }, | |
| { | |
| "key": "shift+alt+f", | |
| "command": "-search.action.restrictSearchToFolder", | |
| "when": "folderMatchWithResourceFocus && searchViewletVisible" | |
| }, | |
| { | |
| "key": "shift+alt+r", | |
| "command": "editor.action.rename", | |
| "when": "editorHasRenameProvider && editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+m", | |
| "command": "workbench.action.gotoSymbol", | |
| "when": "!accessibilityHelpIsShown && !accessibleViewIsShown" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment