mattn / gom

Go Manager - bundle for go
1.38k stars 92 forks source link

Add commands: `vet`, `list`, `env` #54

Closed robert-zaremba closed 9 years ago

robert-zaremba commented 9 years ago

Some tools (eg gorename) are relying on go commands like go env to get environment variables. If one wants to fully take advantage of gom he should be able to use this tools in editor. Emacs function go-root-and-paths uses go-command variable to call go tool and passes env as a first parameter.

To fully substitute go tool one would need to support that additional subcommands.

mattn commented 9 years ago

Thanks.