DisposaBoy
DisposaBoy
That sounds like something `goimports` is doing - GoSublime/margo doesn't remove imports AFAIK.
@KateGo520 Thanks for the heads-up. margo/GoSublime doesn't support distribution as Go modules at this time and there are currently no plans to support it. The usage for urfave/cli is very...
@KateGo520 No, I haven't encountered this type of failure before.
@jdelk What version of Windows are you using, maybe I Microsoft supplies a VM I can use to reproduce this. Subime Text ships with its own version of Python so...
I don't really want to add any more configuration because it makes maintenance a burden so hopefully the following reducer will suffice: mg.NewReducer(func(mx *mg.Ctx) *mg.State { if !mx.LangIs(mg.Go) || !mx.ActionIs(mg.QueryCompletions{})...
I'll consider this when I get to https://github.com/DisposaBoy/GoSublime/issues/855 . I already get enough abuse from Package Control users and the upcoming merge of the development branch will most likely require...
maybe at some point in the future
There's currently no support for modules beyond the limited amount of magic inside of the `go/build` package. The definition is provided by Sublime Text's file indexing.
The `vendor` directory is a general feature of the Go tools so it should work, but IIUC, it's *not* used by Go modules. They only work in the old GOPATH...
It doesn't work because you're in a module and modules don't support the `vendor` directory. AFAIK `go mod vendor` is only there to provide backwards compatibility for older versions of...