Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [ide-dev] Java IDEs comparison



On 7 Sep 2016, at 11:38, Carsten Reckord wrote:

It's surprising how the code completion of IntelliJ (checking target type, frequency of calls, chain completion...) is still listed as better than
the one in Eclipse IDE. Wasn't Code Recommender providing that in all
Java-based packages?

I don't have empirical evidence, just my subjective impression, but one problem with completion that I frequently encounter in Eclipse and that IJ seems to get better is the local context that I'm working in. If there are a dozen proposals for the current completion, we often don't have to look as far as global frequency, chains and all that:

Just prefer the type that is already imported in the current class over the one that isn't, the type or variable that I've used in the line just above where I'm asking for completion over other applicable ones, the method in my current class over some external type proposal, etc.

Also, it's strange that IJ is congratulated for its "Polyglot
development", where the Eclipse ecosystem has a much better offering. The
reason is probably that people compare IDEs as they're shipped, not
ecosystem.

In general, the IJ people shine in two "polyglot" areas here:

1. Consistency: editors and tools look and work the same across languages, whereas there are many (small but annoying) UX differences between different editors and language scopes in Eclipse. 2. Cross-Language features: I haven't tried this in Neon, but before, navigating between artifacts of different languages, getting usages etc was just way more seamless in IJ.

But I hope with the new extensible editors and the language server initiative this is about to improve dramatically :)


Improvement can not happen overnight. Eclipse already has a lot of editors
in place and it will take time before they adopt language servers.

Also the road to getting language servers implementations to Eclipse is not easy depending on the
language server implementation used either.
For instance, we have started such an endeavour to replace Javascript editor and we are
still waiting IP clearance.


_______________________________________________
ide-dev mailing list
ide-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/ide-dev


Back to the top