-
Notifications
You must be signed in to change notification settings - Fork 770
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
commands: support the equivalent of vim-go's GoDefPop #203
Comments
VS Code offers a This issue belongs in the https://github.com/microsoft/vscode repository, since the Go extension does not control VS Code's keyboard shortcuts or the behavior of VS Code's commands. |
the |
I'm not sure that such navigation commands are in the scope of this extension, but I'll let @hyangah make that decision. I guess we can consider it, but I would like to understand how this would differ from |
:GoDefPop
:GoDefPop
Thanks for clarifying the use case. This does sound like a useful feature, but we probably won't prioritize implementing it in the near future. We welcome contributions, so I'll add a help wanted label if you or or anyone else is interested in taking this up. |
If you have a question, please ask it on the
#vscode
or#vscode-go
channels in Gophers Slack](https://invite.slack.golangbridge.org/messages/vscode).Is your feature request related to a problem? Please describe.
When use vscode to
go to definition
by serveral times mixing with some cursor move, then the jump back does not point the pre position where I callgo to definition
. This behaviour like vim's ctrl-o.hope a jump back tag stack feature like vim-go's ctrl-t (
:GoDefPop
)Describe the solution you'd like
use an additional definition stack, only jump definition can push into the stack, the jump back follows the stack's pop sequence
The text was updated successfully, but these errors were encountered: