We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
TL;DR: GoDocBrowser does not link to the correct page anchor for methods.
GoDocBrowser
Given the following code, place cursor on Match and then run :GoDocBrowser.
Match
:GoDocBrowser
https://godoc.org/regexp#FindString
https://godoc.org/regexp#Regexp.FindString
package main import ( "fmt" "regexp" ) func main() { re := regexp.MustCompile(`(vim-go)`) vimgo := re.FindString("vim-go is great") fmt.Println(vimgo) }
The text was updated successfully, but these errors were encountered:
Do you have gogetdoc installed?
gogetdoc
Sorry, something went wrong.
doc: set method anchor correctly
975401b
Fixes fatih#2275
Successfully merging a pull request may close this issue.
TL;DR:
GoDocBrowser
does not link to the correct page anchor for methods.Given the following code, place cursor on
Match
and then run:GoDocBrowser
.https://godoc.org/regexp#FindString
https://godoc.org/regexp#Regexp.FindString
The text was updated successfully, but these errors were encountered: