Paul Jolly

Results 610 comments of Paul Jolly

> When you run that gohack config command, where is that setting stored? `GOHACK/.config`? > Have you considered specifying the directory as part of the regular gohack some-module command? That's...

I also think there is some scope for a module-local config that overrides the global well known "default". In many respects this would be similar to how a `git` config...

True. Perhaps the `-tmp` flag is more convenient? (I'm not sure whether this qualifies as a good enough reason to add it... just that I would find myself typing `gohack...

@nsf - I think the question I asked in [this thread](https://groups.google.com/forum/#!topic/golang-dev/UUdtVkq0J_s) is relevant here. The one question that comes to mind is how this pipeline of tools will work together...

As I understand things, `go/types` does load sources files in the package of interest; it's imports that are loaded via `go/types.Importer` (which can follow whatever strategy you like, one of...

https://github.com/mdempsky/gocode/pull/26 is a proof-of-concept of `vgo` and (by definition since `vgo` requires Go 1.10) build-cache aware version of `gocode`. As the PR mentions, it depends on https://go-review.googlesource.com/c/vgo/+/105855 which is very...

https://github.com/stamblerre/gocode is the fork of `gocode` to use if you need/want Go modules support. This fork is based on [`go/packages`](https://godoc.org/golang.org/x/tools/go/packages), which uses the go build cache under the covers. This...

@nsf - picking up where you left off on 64791d9e7b7e4322996 (and the 'hidden' `cursortype` option) The behaviour you implemented was different to what I expected given the name "cursortype". Taking...

Awesome. I will create a PR to implement this more along the lines of what the name suggests.

@tbpg > Another endpoint idea (standalone or as part of a set of info returned for a module): available versions of a given module. Shouldn't people use `cmd/go` for that?...