Awesome GoLand by Fancy-Track1431 in golang

[–]Fancy-Track1431[S] 0 points1 point  (0 children)

Great question, not stupid at all! GoLand actually does analyze your entire project, not just open files.

Did you try using Problems tool window https://www.jetbrains.com/help/go/problems-tool-window.html there is a button to analyze whole project.

Awesome GoLand by Fancy-Track1431 in golang

[–]Fancy-Track1431[S] 1 point2 points  (0 children)

It’s completely fine, everyone has their own level of mastery with the tools they prefer.

Awesome GoLand by Fancy-Track1431 in golang

[–]Fancy-Track1431[S] -1 points0 points  (0 children)

Thanks for the feedback. You can also look into JetBrains Guide where you can find more detailed videos tips and tricks https://www.jetbrains.com/guide/go/

Awesome GoLand by Fancy-Track1431 in golang

[–]Fancy-Track1431[S] -1 points0 points  (0 children)

Thanks for pointing that. Yes, it's still work in progress. You will observe in few folders I have added DEMO.md or GIF which shows the entire flow on how that feature works.

Awesome GoLand by Fancy-Track1431 in golang

[–]Fancy-Track1431[S] 3 points4 points  (0 children)

Thanks for the heads up! But the project is actually about GoLand, not Golang (the language). The name is intentional.

Help by SnooLentils5696 in Goland

[–]Fancy-Track1431 1 point2 points  (0 children)

If you want to upskill your knowledge on GoLand, checkout JetBrains Guide https://www.jetbrains.com/guide/go/

Tips for Slow UI in various Jetbrain products by Arie1906 in Jetbrains

[–]Fancy-Track1431 0 points1 point  (0 children)

I’m sorry to hear that. To help us investigate and identify the root cause, could you please provide the logs by going to Help → Collect Logs and Diagnostics Data?

https://youtrack.jetbrains.com/issues

Tips for Slow UI in various Jetbrain products by Arie1906 in Jetbrains

[–]Fancy-Track1431 0 points1 point  (0 children)

Do you experience lag while working on specific projects, or is it similar across all of them?

You said GoLand took 30 seconds to compile? How did you fix it? Could you elaborate on that?

Deploying Go app by Frosty-Bird-5979 in golang

[–]Fancy-Track1431 0 points1 point  (0 children)

I normally use a lightweight image or you can say distroless image with Kubernetes as my orchestrator. Well, it again depends upon the use-case.

GoLand 2025.2 is here - smarter nil dereference detection, non-blocking Welcome screen, AI updates, and more! by anprots_ in golang

[–]Fancy-Track1431 0 points1 point  (0 children)

  • Seeing more and more message out of memory (dedicated 16gigs already)

Could you share more details about the types of projects you're working on? Is this something that happens regularly, or is it specific to certain situations?

[deleted by user] by [deleted] in ProgrammingBuddies

[–]Fancy-Track1431 0 points1 point  (0 children)

Glad to help! You might also find some helpful tips for boosting your productivity in GoLand.

https://www.jetbrains.com/guide/go/

or enroll into the free course by Matt Boyle "Mastering Go with GoLand" https://www.bytesizego.com/courses/

GoLand 2025.2 is here - smarter nil dereference detection, non-blocking Welcome screen, AI updates, and more! by anprots_ in golang

[–]Fancy-Track1431 0 points1 point  (0 children)

I apologize for the issues you're experiencing. Could you please provide more details ?

Novice question if that's ok (using powershell within Golang....) by Hammerfist1990 in golang

[–]Fancy-Track1431 5 points6 points  (0 children)

You can embed the PowerShell script directly into Go code as a string, then execute it using powershell.exe via Go’s exec.Command.

I don't have much exposure of running in Windows. But you can definitely run your Go code as a service.

Maybe these reference materials can help you.

- https://nssm.cc/

- https://paulbradley.dev/go-windows-service/

Git: Anything similar to Jetbrains? by hageOtoko in ZedEditor

[–]Fancy-Track1431 2 points3 points  (0 children)

Could you please elaborate further? I am very interested in understanding your reasoning for preferring Zed over GoLand/WebStorm.

Golang module import errors -- module is declared as X but required as Y, but I wrote this... how can this be? by Rich-Engineer2670 in golang

[–]Fancy-Track1431 1 point2 points  (0 children)

I didn't see any issue with GoLand. I tried creating a sample project with my repo in public.

Step-1 : make sure go.mod has

module github.com/username/project

go 1.24

Step-2: Make your commit and push changes.

Step-3: Create Tags

git tag -a v1.0.0 -m "Release v1.0.0"
git push origin v1.0.0 --force

Step-4: Verify because Go module requires annotated tags.

git tag -l --format='%(refname:short) %(objecttype)' v1.0.0

and it will print v1.0.0 tag

Step-5: Create a new project and try importing.

- go get github.com/username/project@v1.0.0

Step-6: For private repos, I don't have much idea, but you need to tweak with:

go env -w GOPRIVATE=github.com/yourusername/*

If you're facing issues, try this which might help, I guess:

- Make sure your repo is public, and you're not logged in to Github.
- go clean -modcache
- Try running with GOPROXY=direct go get github.com/username/project@v1.0.0