Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Key UtilNew to Visual Studio Code? Get it now.
Key Util

Key Util

hw104

|
313 installs
| (0) | Free
Utility tool for keybindings.json
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

key-util README

Utility tool for keybindings.json

Features

  • Sort: key-util.sort
  • Apply Alias: key-util.applyAlias
  • Apply All Aliases in config: key-util.applyAllAliases

Alias

If you set key-util.aliases in settings to ["alt=cmd"]. then run key-util.applyAllAliases.

Before:

[
    {
        "key": "ctrl+cmd+g",
        "command": "editor.action.revealDefinition",
    }
]

After:

[
    {
        "key": "ctrl+cmd+g",
        "command": "editor.action.revealDefinition",
    },
    {
        "key": "ctrl+alt+g",
        "command": "editor.action.revealDefinition",
    }
]
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft