[go-nuts] Re: godoc (golang.org/x/tools/cmd/godoc) has become module-aware

2020-04-13 Thread Nelo Mitranim
@Hein Meling Thanks for the pointer, this actually helped. It gets installed into `$GOPATH/bin`, which actually IS in my `$PATH`, but `which godoc` shows `/usr/local/bin/godoc`. My `.profile` explicitly puts `$GOPATH/bin` first, but somehow my $PATH starts with all sorts of crap like

[go-nuts] Re: godoc (golang.org/x/tools/cmd/godoc) has become module-aware

2020-04-11 Thread Hein Meling
Maybe the godoc command got installed in your $HOME/go/bin folder and this folder is not in your $PATH? -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[go-nuts] Re: godoc (golang.org/x/tools/cmd/godoc) has become module-aware

2020-04-09 Thread Nelo Mitranim
Trying and failing to use this. Help would be appreciated. I'm working on a library module outside of GOPATH. The `go.mod` file is present. The `go` commands such as `go test` seem to run in module mode. But when I run `godoc -http=:6060`, it shows the standard library + packages from GOPATH,

[go-nuts] Re: godoc (golang.org/x/tools/cmd/godoc) has become module-aware

2019-11-08 Thread marcelloh
It would have been nice, if there were installation instructions on the page are redirected to when you click that link, so people know how to get a newer version. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group

[go-nuts] Re: godoc (golang.org/x/tools/cmd/godoc) has become module-aware

2019-11-08 Thread Ain
On Friday, November 8, 2019 at 8:52:07 PM UTC+2, Dmitri Shuralyov wrote: > > Hello gophers, > > godoc , the local web server that > displays documentation for Go packages (not to be confused with > https://godoc.org, the website), has been updated with