Live data from Hacker News

Ask HN: What IDE do you use?

news.ycombinator.com

51–60 of 68 posts

Re: Ask HN: What IDE do you use?

#53
Vim + plugins + Unix tools (find, make, grep, ack, etc.)

For C# I use Visual Studio, Intellisense autocompletion is gteat.

For Java I use Eclipse, but in One project where I was forced to developer on a remote server with many restrictions I user vim + make + javac, It Is Crazy, I know, but It Is possible

Re: Ask HN: What IDE do you use?

#54
post #2

Visual Studio (for .net) and vim (everything else), contrary to many vimmers will tell you, it is an IDE, just not a very good one. I'm expecting that to get a lot better though with the feature set added in vim 8 and things like intellisense services ( https://github.com/OmniSharp/omnisharp-roslyn ), rust and other languages are providing similar tools.

If you would like vim style input to visual studio I recommend vsvim plugin.

Re: Ask HN: What IDE do you use?

#56
post #2

Visual Studio (for .net) and vim (everything else), contrary to many vimmers will tell you, it is an IDE, just not a very good one. I'm expecting that to get a lot better though with the feature set added in vim 8 and things like intellisense services ( https://github.com/OmniSharp/omnisharp-roslyn ), rust and other languages are providing similar tools.

If you would like vim style input to visual studio I recommend vsvim plugin.

It's OK. You still miss out on script ability and the better windowing of vim. The windowing is particularly important on over engineered code bases.

Re: Ask HN: What IDE do you use?

#58
Visual Studio when I'm doing .NET stuff (mainly C#). I love it and I have not found a better IDE (though my next one is a close rival). Now, I've started working with Elixir in my free time and have started using VS Code and I absolutely love that too. It is close to topping Visual Studio.

Re: Ask HN: What IDE do you use?

#60
I used to use Eclipse for Java development years ago. Then I found Sublime Text and haven't looked back. If you just want a lightweight editor that does code highlighting and has an assortment of plugins that are optional then try Sublime. The optional plugins make it so you can get features an IDE has if you choose but don't have the bloat of an IDE.

Also it is truely cross-platform: Windows, Linux and Mac. So if you change jobs, want to use it at home or there is a shift in devs away from Mac to Linux you won't have to learn something new.

Post reply on HN