descriptionErlware Erlang Emacs Mode
homepage URLhttp://code.google.com/p/erlware-mode.git
repository URLhttp://git.erlware.org/erlware-mode.git
ownermartinjlogan@erlware.org
last changeMon, 28 Dec 2009 19:07:59 +0000 (28 11:07 -0800)
last refreshSat, 31 Oct 2009 21:44:12 +0000 (31 22:44 +0100)
content tags
add:
README
User configuration notes
========================

Below is a quick guide to necessary configurations for getting
started with the Erlang mode for Emacs. Please refer to the
Users guide and reference manual in the documentation for the
Erlang/OTP application tools for more information.

You can obtain a copy of the Erlang man pages here:

    http://www.erlang.org/download

Note for the man page menus to be populated, the Erlang
man pages must be in uncompressed form.

Additional documenation for this mode can be found here:

    http://erlware.org/tools/erlware-mode


For UNIX users
--------------

To set up the Erlang Emacs mode on UNIX systems, edit/create the file
.emacs in the your home directory.

Below is a complete example of what should be added to a user's .emacs
provided that OTP is installed in the directory /usr/local/otp:
        
      (setq load-path (cons "<path-to-mode>/erlware-mode" load-path))
      (setq erlang-man-root-dir "/usr/local/otp")
      (setq exec-path (cons "/usr/local/otp/bin" exec-path))
      (require 'erlang-start)

For XEmacs, you use add-to-list to modify the load path:

      (add-to-list 'load-path "<path-to-mode>/erlware-mode")

If your XEmacs system already has the default erlang mode on
the search path, you may need to put the erlware path at the
front of the search path:

      (push "<path-to-mode>/erlware-mode" load-path)


For Windows users
-----------------

To set up the Erlang Emacs mode on Windows systems, edit/create the
file .emacs, the location of the file depends on the configuration of
the system. If the HOME environment variable is set, Emacs will look
for the .emacs file in the directory indicated by the HOME variable.
 If HOME is not set, Emacs will look for the .emacs file in C:\.

Below is a complete example of what should be added to a user's .emacs
provided that OTP is installed in the directory C:\Program
Files\erl-<Ver>:

      (setq load-path (cons  "<path-to-mode>/erlware-mode" load-path))
      (setq erlang-man-root-dir "C:/Program Files/erl<Ver>")
      (setq exec-path (cons "C:/Program Files/erl<Ver>/bin" exec-path))
      (require 'erlang-start)

For XEmacs, you use add-to-list to modify the load path:

      (add-to-list 'load-path "<path-to-mode>/erlware-mode")

If your XEmacs system already has the default erlang mode on
the search path, you may need to put the erlware path at the
front of the search path:

      (push "<path-to-mode>/erlware-mode" load-path)
shortlog
2009-12-28 Dave PeticolasUpdate ChangeLog, AUTHORS.masternextv0.1.19
2009-12-28 Dave PeticolasBump version number.
2009-12-28 Dave PeticolasAdd -define(SERVER, ?MODULE). to gen_event to fix compi...
2009-12-28 bile* Add -define(SERVER, ?MODULE). to fix compilation...
2009-12-28 bile* Create new option, erlang-compile-outdir, which is...
2009-11-27 Dave PeticolasFor release.v0.1.18
2009-11-09 Tino Breddinchanged shebang to use env instead of hardcoded path
2009-10-11 Dave PeticolasUpdate ChangeLog.v0.1.17
2009-10-11 Dave PeticolasBump version number.
2009-09-14 Magnus HenochMerge commit 'origin/master'
2009-09-14 Magnus Henoch* erlang.el (erlang-dollar-is-escape): New variable.
2009-08-08 Dave PeticolasUpdate ChangeLog.v0.1.16
2009-08-08 Dave PeticolasUpdate version number.
2009-07-30 Dave PeticolasUpdate for erlware erlc support.
2009-07-30 Dave PeticolasMerge branch 'mats' into next
2009-07-28 Magnus Henoch* erlang-start.el: Associate files using interpreter...
...
tags
14 years ago v0.1.19
14 years ago v0.1.18
14 years ago v0.1.17
14 years ago v0.1.16
14 years ago v0.1.15
14 years ago v0.1.14
15 years ago v0.1.13
15 years ago v0.1.12
15 years ago v0.1.11
15 years ago v0.1.10
15 years ago v0.1.9
15 years ago v0.1.8
15 years ago v0.1.7
15 years ago v0.1.6
16 years ago v0.1.5
16 years ago v0.1.4
...
heads
14 years ago next
14 years ago master