-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Make vim-go respect g:go_doc_command #1370
Comments
You're right; Note that Personally I'm not sure if it's worth even having this option? What advantage does |
Interesting, thanks for clarifying. I guess that should also be documented then, for hapless souls who are trying to change the command. Maybe it would be best to separate the tasks of the tools a bit better, Anyway, I happen to not have
Which I'm betting comes from Line 137 in 2eb88b7
Perhaps it could say something like: please install |
Fixed with #1379 |
Thanks! At least that gets rid of the cryptic -1 :). |
Why this bug was closed? It still not possible to write |
I guess because the The problem here is that setting So it should be a list: I've been planning to look at this, since I believe there are some other commands that also need some attention, but I also broke my arm last week unfortunately so my plans are a bit on hold atm. In the meanwhile, you could run |
Thanks for clarification. |
For what it's worth,
|
Behavior
When using
:GoDoc
(or similar functionality), thegodoc
program is used, even when alteringg:go_doc_command
to saygo doc
.Steps to reproduce:
Load vim-go and use this option
I suspect the reason for this is that g:go_doc_command is only documented, never used:
Configuration
I do not believe specific verison of Vim and such are important here. I used execsnoop(1) to see that
godoc
was being called, notgo doc
.The text was updated successfully, but these errors were encountered: