Why I (finally) moved from Eclipse to Intellij



I had to keep both Eclipse and Intellij running side-by-side for a while, because I could not peel away from Eclipse, my editor of choice for years. A few days later and Intellij has eclipsed Eclipse (pardon the pun). Here' s a few reasons why:


- I't s easy to switch between implementation and test (CTRL+shift+T) in Intellij, there's no equivalent in Eclipse.

- When searching for the usages of a variable/method/class Intellij scopes the search by test files, production files (or both).  In Eclipse you would have to manually specify the full path to search in each case.

- In general Intellij is pretty smart when it comes to refactoring. for instance when renaming a class attribute  the name of the getter method for that class attribute will  be renamed accordingly. 

- Smart code completion: Intellij will make much better suggestions as to what expression type is expected based on the context than Eclipse.

- automatically resolution of import static.
  
- Paste from history

- Use regex in search

- On the downside Intellij is a tad slower than Eclipse and tends to lock up for 30 secs or so once or twice a day.

So overall there's no major functionality or killer feature offered by Intellij that Eclipse cannot replicate. But the difference is in the many little details which are often better thought out in Intellij, resulting in a better experience (and increased productivity).


1 comment:

  1. Welcome to the club :-)... that locking is strange, in my case I have similar problems with Eclipse while IDEA seems to be a bit swifter.

    From what you named - paste from history, smarter completion and refactorings - these are the main factors for me. I can also add complete statement feature + better out of box SVN/Maven support + quick diff by default - all these things one has to set up in Eclipse first.

    ReplyDelete