Is there a project to support extended language support for Emacs, VIM, and other editors using the Eclipse code base?

There are many questions about IDEs and editors, which is better for developing modern software. In the answers, the usual point is that Eclipse has much better language support, for example. for Java and that other editors are lagging behind in this regard.

What qeustion brings: why play catch up at all? Eclipse will always have more development resources, so it makes sense to just use the Eclipse code. It can be separated from the Eclipse user interface, and it can be launched in a separate process, with which Emacs, Vim, and other editors just talk when they need information, want to perform intelligent code completion, or refactor.

Is there an existing project that is trying to do this? This would be the best of both worlds: you could use an editor that would be used to, and at the same time, the powerful language support provided by Eclipse.

+4
source share
1 answer

As a vim lover, I can't speak for emacs. As for vim, as far as I know, the only good project combining eclipse and vim, eclim . But, given my experience (I am a ruby โ€‹โ€‹developer with a long Java experience), I would not offer Vim for Java development. Eclipse is very good for Java, and I don't like hybrid solutions. The real question is about teams. It is very difficult to find Java developers who can use Vim in a production environment. Therefore, when I had to choose tools for the project, I chose Eclipse for Java. If your needs are personal, perhaps you could make different considerations and go for eclim.

+4
source

All Articles