-
-
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
Neovim integration details in vim-go.txt and README.md #689
Conversation
@@ -629,6 +668,19 @@ if "inside a function", select contents of a function, | |||
|
|||
|
|||
=============================================================================== | |||
FUNCTIONS *go-functions* | |||
|
|||
There is only one function at the moment and it is neovim only. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We also have go#complete#GetInfo()
which returns the description of the identifier under the cursor. It can be also plugged into statusline. This function is also used for the go_auto_type_info
feature.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fatih I'll add that in, I'm at school atm, have to do some bullshit VB work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm just going over it. No worries, take your time ;) I've went over the same bullshit back in university, that's life :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fatih i'm actually still in high school. the assignments are so annoying only because programming in visual studio takes so long.
@nhooyr this is an awesome contribution. Thanks! once you changed/fixed the review notes I'll merge it 👍 |
The neovim integration details have been added in both vim-go.txt and README.md. Also a little bit of cleanup and consistency fixes
@fatih should be good now. |
Neovim integration details in vim-go.txt and README.md
Thanks @nhooyr , awesome work :) |
The neovim integration details have been added in both vim-go.txt and
README.md. Also a little bit of cleanup and consistency fixes.
Fixes #652