You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I'd like to be able to jump to definition in a split pane when doing gd, something like gD maybe ? Describe the solution you'd like gD (or some other keybinding) should open a split pane if not opened already, else if opened, jump to definition there. Not sure if VSCode API allows such a thing.
Thanks a lot for the help !
The text was updated successfully, but these errors were encountered:
Map vscode command to "gv" for example and you will have it, the problem is "C-o" is not working after this jump
{
"before": ["g", "v"],
"commands": ["editor.action.revealDefinitionAside"],
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
},
Is your feature request related to a problem? Please describe.
I'd like to be able to jump to definition in a split pane when doing
gd
, something likegD
maybe ?Describe the solution you'd like
gD
(or some other keybinding) should open a split pane if not opened already, else if opened, jump to definition there. Not sure if VSCode API allows such a thing.Thanks a lot for the help !
The text was updated successfully, but these errors were encountered: