tools
tools copied to clipboard
[mirror] Go Tools
Updates: https://github.com/golang/go/issues/70217
While looking at the compiler source, i noticed that the hover results of cmd/compile/internal/ir.Op are pretty bad. First of all currently the preference order is like this: spec.Doc, decl.Doc, spec.Comment....
Moved the `godoc/vcs` subpackage into a separate package `vcs`, since it can be used independently of `godoc`.
Closes Issue https://github.com/golang/go/issues/71248
This adds a lead on how to render code lenses inline, for gopls, in Neovim. A full example (requires Neovim v0.11.0, where `vim.lsp.config` and `vim.lsp.enable` was introduced): ```lua local config...
Updates golang/go#64271