Eclim is an Eclipse plugin which exposes Eclipse features through a server interface. When this server is started, the command line utility eclim can be used to issue requests to that server.
Emacs-eclim uses the eclim server to integrate eclipse with emacs. This project wants to bring some of the invaluable features from eclipse to emacs.
-
download and install eclim
-
download emacs-eclim
-
add the following code to your emacs startup script
(add-to-list 'load-path (expand-file-name "/path/to/emacs-eclim/")) ;; only add the vendor path when you want to use the libraries provided with emacs-eclim (add-to-list 'load-path (expand-file-name "~/coding/git/emacs-eclim/vendor")) (require 'eclim) (setq eclim-auto-save t) (global-eclim-mode)
-
customize the
eclim-executable
variable to make it point to theeclim
executable within the Eclipe directory if necessary
- A recent (version 0.6.0 or later) of yasnippet.
To get started just lunch the eclim executable that the placed in your Eclipse installation directory.
The project is under active development and we are always looking for assistance.
- Fork emacs-eclim
- Create a topic branch -
git checkout -b my_branch
- Make your changes and update the History.txt file
- Push to your branch -
git push origin my_branch
- Send me a pull-request for your topic branch
- That's it!