emacs-eclim / emacs-eclim

This project brings some of the great eclipse features to emacs developers. It is based on the eclim project, which provides eclipse features for vim. Development from senny/emacs-eclim has moved here.
http://www.emacswiki.org/emacs/EmacsEclim
165 stars 29 forks source link

Allow Emacs Eclim to use -f and --nailgun-port parameters #61

Closed nloyola closed 7 years ago

nloyola commented 7 years ago

The Eclim executable allows the -f parameter to specify an eclimrc file. Also, the --nailgun-port parameter can be used to specify a port to connect to the Eclimd Server. Allow, Emacs Eclim to be able to specify / use these parameters.

This issue arose after @kminh reported #60.

kminh commented 7 years ago

Thank you for your consideration!

nloyola commented 7 years ago

Hi @kminh I've added the following customize settings: eclim-eclimrc and eclim-nailgun-port. You can set eclim-eclimrc to ~/.eclimrc or set eclim-nailgun-port to 9092 for example. The Emacs Eclim package will then append these options when invoking the Eclim executable.

This implementation only supports a single workspace per Emacs session however. To use more than one workspace, you'll have to have run two diffrent instances of Emacs.

More work is required to support multiple workspaces within a single Emacs session. This will have to be added in the future.

nloyola commented 7 years ago

Added issue #62 to track work to support multiple workspaces.