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.
Some tools (eg
gorename
) are relying on go commands likego env
to get environment variables. If one wants to fully take advantage ofgom
he should be able to use this tools in editor. Emacs functiongo-root-and-paths
uses go-command variable to call go tool and passesenv
as a first parameter.To fully substitute
go
tool one would need to support that additional subcommands.