Top "Goland" questions

GoLand is an IDE by JetBrains for the Go programming language

Is there a way to sync settings across JetBrains IDEs?

What is the best way to sync similar settings across JetBrains IDEs? For example I have PyCharm and PhpStorm, both …

intellij-idea pycharm phpstorm webstorm goland
Running 'goimports' on save in GoLand

I'm using GoLand IDE to code in Go. When I save a file, I'd like that the unused imports disappear (…

go goland
How do I get IntelliJ Terminal to work properly with Oh My Zsh?

I love Oh My Zsh, but it has never worked properly in the JetBrains product's Terminals: cannot find executables cannot …

intellij-idea pycharm zsh oh-my-zsh goland
How to exclude or skip specific directory while running 'go test'

go test $(go list ./... | grep -v /vendor/) -coverprofile .testCoverage.txt I am using the above command to test the files …

go testing goland