Emacs auto-complete source for CoffeeScript.
Current version uses a simple laxer-based approach and provides little information other than keyword identifier (e.g. variable, method names) list. That's enough for most common usage. The next version will be grammar-based.
I moved on to Atom Editor. This project is no longer under maintenance.
- Node.js
- Coffee
- Emacs 24+
- auto-complete
- Current version doesn't provide scope information yet, which means suggestions is made only by token name.
- Does not start completion on
.
.
- Clone this repo
In repo folder, run(node_modules folder already included in repo)npm install coffee-script
- Configure
.emacs
;; My Coffee AC Source
(add-to-list 'load-path "path/to/ac-coffee/")
(require 'ac-coffee)
Done!