Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse is Ugly (from a recovering vim user)

So, I'm finally taking the plunge to using eclipse from vim ... but I'm having some serious issues getting over the incredibly cluttered interface and menu system. Example: right clicking in the main text area yields a submenu with ~30 items... The whole eclipse environment seems cumbersome and rather ugly.

I've painstakingly changed the fonts and colors, and it bothers me that the settings are peppered throughout the entire settings window. I wish there existed color scheme quick setups like both emacs and vim have had for decades. Through stackoverflow I found:

http://blog.codefront.net/2006/09/28/vibrant-ink-textmate-theme-for-eclipse/

But, I would love some more examples! Something like torte or slate.

Does anyone have the secret of making eclipse a more usable tool with a more aesthetically pleasing interface?

like image 972
Ralphleon Avatar asked Jul 12 '09 02:07

Ralphleon


1 Answers

Well, if you miss vim so much, and just want the extra eclipse features, have you considered eclim?

The primary goal of eclim is to bring Eclipse functionality to the Vim editor. The initial goal was to provide Eclipse’s java functionality in vim, but support for various other languages (c/c++, php, python, css, html, xml, etc.) have been added and several more are planned.

Eclim is less of an application and more of an integration of two great projects. The first, Vim, is arguably one of the best text editors in existence. The second, Eclipse, provides many great tools for development in various languages. Each provides many features that can increase developer productivity, but both still leave something to be desired. Vim lacks native Java support and many of the advanced features available in Eclipse. Eclipse, on the other hand, still requires the use of the mouse for many things, and when compared to Vim, provides a less than ideal interface for editing text.

That is where eclim comes into play. Instead of trying to write an IDE in Vim or a Vim editor in Eclipse, eclim provides an Eclipse plug-in that exposes Eclipse features through a server interface, and a set of Vim plug-ins that communicate with Eclipse over that interface. This functionality can be leveraged in three primary ways, as illustrated below.

  1. The first scenario is for those for which vim is their primary editing interface. In this scenario you run a headless instance of eclipse which all vim instances can then communicate with to provide the various eclipse features.
  2. The second scenario is for those who prefer using vim as their main interface, but frequently end up jumping back to eclipse for any features not provided by eclim. In this case you can run the eclim server inside of the eclipse gui and then interact with it via external vim instances just like the first scenario.
  3. The last scenario is for those who wish to use the eclipse interface full time, but want to use gvim as an embedded eclipse editor. Just like the previous use case, the eclim server is run inside of the eclipse gui and the embedded gvim will interact with it just like external vim instances would.
like image 186
rampion Avatar answered Sep 20 '22 00:09

rampion