diff options
author | Erlang/OTP <[email protected]> | 2010-06-01 14:28:21 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-06-01 14:28:21 +0000 |
commit | c68045eb946cbe5435449fb49b697624b49dddff (patch) | |
tree | 62ac8374c1f908e8012175609ee38f245fe66a66 /lib/tools/emacs/README | |
parent | cfd5c28958d5fbe17ac17a45118c0bf40d214483 (diff) | |
parent | 54cda6a510a62927d2b295732bdd9d9afa51940d (diff) | |
download | otp-c68045eb946cbe5435449fb49b697624b49dddff.tar.gz otp-c68045eb946cbe5435449fb49b697624b49dddff.tar.bz2 otp-c68045eb946cbe5435449fb49b697624b49dddff.zip |
Merge branch 'kj/emacs-erlang-flymake' into dev
* kj/emacs-erlang-flymake:
erlang-flymake: Document in README
erlang-flymake: Make the syntax check command configurable
erlang-flymake: By default pass <app>/include and <app>/ebin to compiler
erlang-flymake: Include in Makefile
erlang-flymake: Syntax check erlang code on the fly (using flymake)
Diffstat (limited to 'lib/tools/emacs/README')
-rw-r--r-- | lib/tools/emacs/README | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/tools/emacs/README b/lib/tools/emacs/README index ca068d04c4..cc107dcd41 100644 --- a/lib/tools/emacs/README +++ b/lib/tools/emacs/README @@ -42,7 +42,14 @@ Files\erl-<Ver>: (setq erlang-root-dir "C:/Program Files/erl<Ver>") (setq exec-path (cons "C:/Program Files/erl<Ver>/bin" exec-path)) (require 'erlang-start) - +Miscellaneous addons +-------------------- + +In order to check erlang source code on the fly, add the following +line to your .emacs file (after erlang-start, see above). See +erlang-flymake.el for more information on how to customize the syntax +check. + (require 'erlang-flymake) |