Live data from Hacker News

Ask HN: What is the must have feature of your IDE

news.ycombinator.com

1–10 of 71 posts

Re: Ask HN: What is the must have feature of your IDE

#4
I love the combination of Tmux and VI. This is because of the tight integration with the shell and the fact that I can work completely without a mouse.

Alas I am a Java guy and restricted to IntelliJ at work. It's a great IDE but I never feel as 'at home' as I do in the shell.

My favorite and most used refactoring feature in any IDE is Extract Method. It's a simple one, but I use it repeatedly when cleaning up both my own code and legacy code. My code would be much uglier without it.

Re: Ask HN: What is the must have feature of your IDE

#5
Must have features for me are code completion "intellisense" to borrow a term. Proper and diverse syntax highlighting, Function/Method signature helpers, code/file navigation, and a clearly defined layout of the interface. Additionally, the IDE should have a clearly defined purpose and all utilities and support functions should reflect this. SOme good examples IMO are visual studio, and jetbrains IDEs of which I primarily use webstorm

Re: Ask HN: What is the must have feature of your IDE

#7
Syntax highlighting, code completion, jump to definition and code linting, search and replace (regexps) in project... and of course a nice and, most importantly, fast code editor.

So, I use Sublime Text. Although it technically isn't an IDE, with some plugins installed (SublimeCodeIntel, SublimeLinter, and others), it works wonderfully as is if was. And it's blazing fast too.

Re: Ask HN: What is the must have feature of your IDE

#8
I really love Sublime, so here are a few features which stop be from switching to apps such as Chocolat.

- Multiple Cursors, at first you think this is just a gimmick, but it soon shows its usefulness. I use this feature all of the time.

- Jump to definition.

- Useful and intuitive key bindings.

- Console output.

Post reply on HN