We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
On go 1.6, Reproduction steps...
Project structure
test.go vendor/ github.com/ chzyer/ logex/ ...
test.go
package main func main() { logex.Println("hello") }
goimports test.go
package main import "github.com/chzyer/logex" func main() { logex.Println("hello") }
The text was updated successfully, but these errors were encountered:
I had the same problem, #735 fixed my problem.
Sorry, something went wrong.
This is fixed with @mhamrle work #735. Please open an issue if the problem still insist. Thanks!
I still have this issue I tried update latest goimports and vim-go but still have issue NVIM 0.1.4 go version go1.6.2 linux/amd64
main.go vendor/github.com/nlopes/slack/...
main.go
package main func main() { api := slack.New("") }
If I run goimports -srcdir . main.go, it import like normal:
goimports -srcdir . main.go
package main import "github.com/nlopes/slack" func main() { api := slack.New("") }
I have this problem too (and even if I run goimports without the -srcdir . it will work)
No branches or pull requests
On go 1.6, Reproduction steps...
Project structure
test.go
goimports test.go
yields...The text was updated successfully, but these errors were encountered: