jnwhiteh/vim-golang

Does this package the same as misc/go compatable with gocode?

dlintw opened this issue · 1 comments

I like gocode's completion function.
But it lack the 'get help' function'.
Is it possible through your vim script to got help from something like "fmt.Printf"?

I'm not sure I understand your question, my repository has nothing to do with gocode. This is a mirror of the vim plugins contained in the main Go repository. Those include a command called 'Godoc' which invokes godoc externally so you could do the following:

:Godoc fmt

And then search for func Printf to get the documentation you're looking for.

Otherwise, could you please clarify your question?