2008年1月2日水曜日

The Erlang mode for Emacs

EmacsのErlangモードを使うには、.emacsに以下のコードを追記します。
(setq load-path (cons "/usr/local/otp/lib/tools-<ToolsVer>/emacs"
load-path))
(setq erlang-root-dir "/usr/local/otp")
(setq exec-path (cons "/usr/local/otp/bin" exec-path))
(require 'erlang-start)


  • /user/local/otpは、Erlangのインストールパスで置き換えてください。
  • 1行目の<ToolsVer>には、インストールされているErlangのバージョンが入ります。実際のディレクトリ構成に合わせてください。

詳しくは:
http://www.erlang.org/doc/apps/tools/erlang_mode_chapter.html

0 件のコメント: