mirror of
https://github.com/rheaplex/moocode-mode.git
synced 2026-09-16 16:42:07 +00:00
No description
- Emacs Lisp 100%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| autocomplete | ||
| yasnippet/moocode-mode | ||
| .gitignore | ||
| COPYING | ||
| dev-moocode-mode.el | ||
| moocode-mode.el | ||
| README | ||
moocode-mode.el =============== By Rhea Myers <[email protected]> Emacs support for editing LambdaMOO code. Installation ============ Major Mode ---------- To install the Emacs major mode, add the file moocode-mode.el to your Emacs load path. You can then load it by typing the following in Emacs: M-x moocode-mode Alternatively you can have Emacs load it automatically for files with a .moo extension by adding the following to your .emacs file: (require 'moocode-mode) (add-to-list 'auto-mode-alist '("\\.moo$" . moocode-mode)) Autocomplete ------------ To install the autocomplete dictionary, copy the file ``moocode-mode'' to the autocomplete directory in your autoload dictionary directory. e.g.: cp moocode-mode ~/.emacs.d/ac-dict Then rebuild the autocomplete cache by typing the following in Emacs: M-x ac-clear-dictionary-cache Other Files ----------- You don't need to install dev-moocode-mode.el, it just contains code used in making the regular expressions used by moocode-mode.el .