Skip to content

Instantly share code, notes, and snippets.

@tongtunggiang
Created June 8, 2025 10:32
Show Gist options
  • Select an option

  • Save tongtunggiang/820a03b1f2a33585d7694134a63af645 to your computer and use it in GitHub Desktop.

Select an option

Save tongtunggiang/820a03b1f2a33585d7694134a63af645 to your computer and use it in GitHub Desktop.
VAX keybindings for VSCode
// 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