-
-
Notifications
You must be signed in to change notification settings - Fork 212
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prepare for Modules (vgo support) #237
Comments
Yes, it should. |
any update on this? |
Any update please? |
go-mode works pretty well for me when using modules. Are there concrete things that aren't working for people right now? |
Things that come to mind:
|
We've added a new major mode for the go.mod file in 50e15c7 |
We've deprecated all GOPATH-related functionality. Building projects using GOPATH is not expected to be supported by Go for much longer. go-mode has been working fine with modules for a while, so I think we can close this issue. |
This is a placeholder ticket to collect the various ideas and implementation steps currently discussing Golang module support.
A module is a collection of packages, denoted by a common filesystem root, in which in it's simplest form a file named
go.mod
resides. As a consequence there is no more need ofGOPATH
.A proposal and reference implementation are under way.
For the design of
go-mode
a couple of questions come up like shall a future go-mode support both environments of set GOPATH and pure Golang module setups?The text was updated successfully, but these errors were encountered: