No description
  • Emacs Lisp 100%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2014-05-27 20:34:54 -07:00
autocomplete Make the method that tests whether the text is in a @notedit more robust. Add autocomplete and yasnippet support. Add documentation for using autocomplete and yasnippet. 2012-07-16 21:38:32 +01:00
yasnippet/moocode-mode Make the method that tests whether the text is in a @notedit more robust. Add autocomplete and yasnippet support. Add documentation for using autocomplete and yasnippet. 2012-07-16 21:38:32 +01:00
.gitignore Fix COPYING file. 2014-05-27 20:34:54 -07:00
COPYING Fix COPYING file. 2014-05-27 20:34:54 -07:00
dev-moocode-mode.el SMIE-based indentation. Highlight try bocks. 2013-01-26 16:32:09 +00:00
moocode-mode.el SMIE-based indentation. Highlight try bocks. 2013-01-26 16:32:09 +00:00
README Update the README. 2013-01-27 17:49:37 +00:00

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 .