Bloated.
Btw Iām using neovim with vim-go.Vim-go is a beast of a plugin.
Mostly for speed reasons. The Atom go-plus library is great, but due to how it and Atom are implemented, every time I save my project (which is huge) is has to scan the entire thing for error (including import errors, typos, non used variables, etc.). While this is super fast on Vim, Sublime Text, even Visual Studio Code (which I donāt use exclusively because its Vim mode is not complete), it is very slow on Atom. Every save takes a long time to show errors and/or completion suggestions.
I love Atom, but its speed is driving me away for the time being.
P.S.: Iām running these editors in a top-of-the-line MacBook Pro 17"
Fatih and contributors are doing such a great job in vim-go.
Understood. Thanks for sharing.
Using Goclipse , but Iām very biased to it ā¦
Not yet mentioned but also a good choice is VS Code with the Go extension and rewrap to paragraph wrap comments. There are many other extensions available but those are all Iāve needed so far.
Running goimports
on save etc. isnāt enabled by default but can be configured:
"go.formatTool": "goimports",
"go.formatOnSave": true,
VSCode is genuinely impressive, and Iād probably be using it if I hadnāt learnt vim.
And speaking of vimāIāve updated my dotfiles/vimrc to align with the new features in vim-go, including:
Iām using Atom, it is slow and Iām considering Vim, seems like a lot of people are using that. Used sublime before. All of them have different pros and cons. Havenāt really taken the time to dig into how to use them and what addons/plugins to use
Iām using LiteIde.
For me, for all programming, itās got to be vim
in the terminal alongside tmux
. As for go
editor plugins, vim-go
is really productive and has some really great features!
The best online IDEā¦ Cloud9IDE : https://c9.io
Just wanted to cast my vote. Iām using VSC as well. Itās the best Iāve found so far. Iāve used WebStorm and was tired of the indexing slowing me down all the time, as well as no delve support (though Iāve since learned that the command line delve isnāt hard at all). Iāve also used Atom and it works alright, I just found parts of it a bit cooky.
VSC is slow every now and then, and Iām not sure why. A quick save, exit, open to files, and it works fine. Iāve only had to do it twice in the last few months. Only complaint is maybe better Git integration - view all past commits would be nice. Thereās an āOpen to Gitā addon though.
And if you did want to do debuggingā¦ it does work well with delve:
I have spent a lot of time trying to find a good text editor. Turned up that it is quite difficult to find exactly what I need for an acceptable price. After few hours of exhausted searching, I have found one interesting site that lists some interesting text editors and a brief description: besttexteditor.com
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.