Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Open Type Definition AsideNew to Visual Studio Code? Get it now.
Open Type Definition Aside

Open Type Definition Aside

bzy-debug

|
5 installs
| (0) | Free
Add command to open type definition aside
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Open Type Definition Aside

This extension add a command (editor.action.revealTypeDefinitionAside) and a editor context menu item to open the type definition aside.

command:

menu item:

Config

It's better to use this extension with key bindings.

In your keybindings.json

{
  "key": "<keybindings-you-like>",
  "command": "editor.action.revealTypeDefinitionAside",
  "when": "editorHasTypeDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
},

Or if you are using vscode vim, in your settings.json

  "vim.normalModeKeyBindingsNonRecursive": [
    ...
    {
      "before": ["<C-w>", "g", "t"],
      "commands": ["editor.action.revealTypeDefinitionAside"]
    }
  ]
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft