Open gomesalexandre opened 5 years ago
gd
calls editor.action.goToDeclaration
. Not sure there's a parameter or anything that would allow this.
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 likegD
(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 !