Giter Club home page Giter Club logo

emacs-eclim's Introduction

Overview

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.

It is also possible to start and stop the eclim daemon from emacs using the eclimd package.

You can ask questions or discuss new features at our Google Group

A note about Eclim versions

Prior to version 1.7.3, eclim used a proprietary protocol for communication with the eclim server. If you are running one of these older versions, you need version 0.1 of emacs-eclim.

Eclim versions 1.7.3 however, serves responses using a standard JSON format. These are supported by emacs-eclim versions 0.2 and later.

Emacs-eclim versions are tagged with the appropriate version number. You can see and download previous releases here.

Installation

  1. download and install eclim.

  2. download emacs-eclim

  3. 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)
    
  4. If you want to control eclimd from emacs, also add

     (require 'eclimd)
    

Configuration

Eclipse installation

Emacs-eclim tries its best to locate your Eclipse installation. If you have Eclipse installed in a non-standard location (i.e. ~/opt/eclipse) you have to options:

  • Either customize the eclim-executable variable to make it point to the eclim executable within the Eclipe directory if necessary

  • Or, you can override the lookup by adding the following to your startup script.

      (custom-set-variables
       '(eclim-eclipse-dirs '("~/opt/eclipse")))
    

Displaying compilation error messages in the echo area

When the cursor is positioned on an error marker in a code buffer, emacs-eclim uses the local help feature in emacs to display the corresponding error message in the echo area. You can either invoke (display-local-help) manually or activate automatic display of local help by adding the following to .emacs:

(setq help-at-pt-display-when-idle t)
(setq help-at-pt-timer-delay 0.1)
(help-at-pt-set-timer)

Configuring auto-complete-mode

If you wish to use auto-complete-mode with emacs-eclim, add the following to your .emacs:

;; regular auto-complete initialization
(require 'auto-complete-config)
(ac-config-default)

;; add the emacs-eclim source
(require 'ac-emacs-eclim-source)
(add-hook 'eclim-mode-hook (lambda ()
                             (add-to-list 'ac-sources 'ac-source-emacs-eclim)
                             (add-to-list 'ac-sources 'ac-source-emacs-eclim-c-dot)))

Configuring company-mode

Emacs-eclim can integrate with company-mode to provide pop-up dialogs for auto-completion. To activate this, you need to add the following to your .emacs:

(require 'company)
(require 'company-emacs-eclim)
(company-emacs-eclim-setup)
(global-company-mode t)

Configuring eclimd module

When emacs-eclim is configured correctly, you don't need to modify the configuration for the eclimd package. Still, there are some configurable variables you can tweak:

  1. eclimd-executable: This variable is used for locating the eclimd executable file. You can set it to nil ("Same directory as eclim-executable variable" choice in customization screen) to indicate that the executable is in the same directory as the eclim program. Alternatively, you can give it a string value ("Custom value" choice in customization screen) to specify the location of the executable.

  2. eclimd-default-workspace: When start-eclimd is executed, it will ask for the workspace directory to use. The default value for this question is controlled by this variable.

  3. eclimd-wait-for-process: Normally, when start-eclimd starts the eclimd process, it pauses emacs until eclimd is ready to accept commands. If you change the value of this variable to nil, start-eclimd will return as soon as eclimd is started. Eclimd startup takes several seconds, so if you change the default value of this variable, emacs-eclim commands will fail until eclimd is ready.

Optional dependencies

  • A recent version (0.6.0 or later) of yasnippet
  • A recent version (tested with 0.5) of company-mode
  • A recent version (tested with 1.4) version of auto-complete-mode
  • ido-mode (part of emacs as of version 22)

Usage

To get started just launch the eclim executable that the placed in your Eclipse installation directory.

Controlling eclimd

When you import the eclimd package, you will have access to two commands: start-eclimd, and stop-eclimd.

start-eclimd will ask for a workspace directory, and it will attempt to start eclimd program with the entered workspace directory. The configurable variable eclimd-default-workspace controls the default value of this directory. After start-eclimd runs the daemon, it will monitor its log output, and wait for the message that indicates that it is ready to accept commands. This is done to prevent failures with emacs-eclim commands while eclimd is starting up. While start-eclimd is waiting for the daemon to be ready, emacs will not accept any user input. To prevent this pause, you can modify the configurable variable eclimd-wait-for-process.

Normally, simply killing the buffer *eclimd* will allow you to stop the eclimd daemon. However, there is a command to perform a graceful shutdown: stop-eclimd. You should use this command when you wish to stop the eclimd program.

Contributing

The project is under active development and we are always looking for assistance. See the Roadmap wiki page for more information.

  1. Fork emacs-eclim
  2. Create a topic branch - git checkout -b my_branch
  3. Make your changes and update the History.txt file
  4. Push to your branch - git push origin my_branch
  5. Send me a pull-request for your topic branch
  6. That's it!

emacs-eclim's People

Contributors

fred-o avatar senny avatar damiencassou avatar aarzilli avatar useername avatar rlazo avatar tsdh avatar vhallac avatar jiblits avatar scottyb avatar chumpage avatar massimolauria avatar mon-ouie avatar tadfisher avatar buzztaiki avatar johnwayner avatar antonj avatar lespaul avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.