Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>keybind-palette interopNew to Visual Studio Code? Get it now.
keybind-palette interop

keybind-palette interop

Saif-hakeam

|
44 installs
| (0) | Free
Enables calling keyboard commands using command palette & vice versa
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

keybind-palette-interop

VSCode offers two ways user can interact with the editor & extensions: keybindings and command palette. This extension allows to interop between the two by:

  • Call command palette from keybinding
  • Call keybinding based command from command palette

Use case:

Settings Cycler

A great way to toggle between two set of settings via keyboard shortcut.

"settings.cycle": [
    {
        "id": "toggleGitIgnoreSearch",
        "overrideWorkspaceSettings": true,
        "values": [
            {
                "search.useIgnoreFiles": true,
                "search.useParentIgnoreFiles": true,
            },
            {
                "search.useIgnoreFiles": false,
                "search.useParentIgnoreFiles": false,
            }
        ]
    },
],

However, like many other extensions it only offers keyboard shortcuts to call those commands. This extension allows to call those by

"keybind-palette-interop.commands": [
    {
        "keybind_id": "settings.cycle.toggleGitIgnoreSearch",
        "title": "Toggle GitIgnore Search"
    },
],

Now you can call the keybind by Ctrl+Shift+P and type Run Keybind via Command palette.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft