欢迎来到天天文库
浏览记录
ID:32367278
大小:48.65 KB
页数:4页
时间:2019-02-03
《windows下emacserlang开发环境的配置》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、Windows下Emacs+Erlang开发环境的配置作者:FlyingHail发布时间:February17,2011分类:Erlang最近在寻找好的ErlangIDE...抛开那些一般的文本编辑器,目前已知的就是:Erlide-Eclipse插件,试用0.10beta最大的问题是对UTF-8的支持,代码中写入中文高亮就乱掉了,注释中写中文关闭之后打开会报错,无法打开Erlybird-Netbeans插件,支持NB6.7,不支持6.9,而且试了一下6.7,启动报错,新建erlang应用囧住了...下一步总是灰的EmacsErlangmode-功能比较全面,不过因为是*NIX的东西,上手难度
2、大一些,操作需要熟悉和适应最后唯一的选择就是Emacs了,其他实在Ungelievable....首先进行下载&安装:ErlangOTP最新版的Windowsbinary:http://www.erlang.org/download.htmlEmacsW32选择DownloadlatestEmacsW32+Emacspatched:http://www.ourcomments.org/cgi-bin/emacsw32-dl-latest.plDistel下载最新的包:https://github.com/massemanet/distelErlangOTP和EmacsW32按照安装程序装就好
3、了,Distel随便找个地方解压,自己规划路径吧安装好EmacsW32,先运行,启动进去,点击首页的CustomizeStartup并保存,这是为了生成Emacs的自定义配置文件.emacs,后面配置会用到它.emacs的路径:XP下:系统盘符(一般是C):DocumentsandSettings你的用户名ApplicationData.emacsVista&7:系统盘符(一般是C):Users你的用户名AppDataRoaming.emacs一、配置Erlangmode+distel:参考:http://bc.tech.coop/blog/070528.html添加以下内
4、容到.emacs文件,注意修改里面的那些路径,注意路径里面不要用,全部写/:?123456789;;Erlangmode(setqload-path(cons "/lib/tools-<版本号>/emacs"load-path))(setqerlang-root-dir"")(setqexec-path(cons"/bin"exec-path))(require'erlang-start) ;;ThisisneededforDistelsetup(let((distel-dir"5、置的路径>/elisp"))101112131415161718192021222324252627282930313233343536373839(unless(memberdistel-dirload-path);;Adddistel-dirtotheendofload-path(setqload-path(appendload-path(listdistel-dir))))) (require'distel)(distel-setup);;SomeErlangcustomizations(add-hook'erlang-mode-hook (lambda() 6、;;whenstartinganErlangshellinEmacs,defaultinthenodename (setqinferior-erlang-machine-options'("-sname""emacs")) ;;addErlangfunctionstoanimenumenu (imenu-add-to-menubar"imenu"))) ;;Anumberoftheerlang-extended-modekeybindingsareusefulintheshelltoo(defconstdistel-shell-keys'(("C7、-M-i" erl-complete)("M-?" erl-complete) ("M-." erl-find-source-under-point)("M-," erl-find-source-unwind)("M-*" erl-find-source-unwind))"AdditionalkeystobindwheninErlangshell.") (add
5、置的路径>/elisp"))101112131415161718192021222324252627282930313233343536373839(unless(memberdistel-dirload-path);;Adddistel-dirtotheendofload-path(setqload-path(appendload-path(listdistel-dir))))) (require'distel)(distel-setup);;SomeErlangcustomizations(add-hook'erlang-mode-hook (lambda()
6、;;whenstartinganErlangshellinEmacs,defaultinthenodename (setqinferior-erlang-machine-options'("-sname""emacs")) ;;addErlangfunctionstoanimenumenu (imenu-add-to-menubar"imenu"))) ;;Anumberoftheerlang-extended-modekeybindingsareusefulintheshelltoo(defconstdistel-shell-keys'(("C
7、-M-i" erl-complete)("M-?" erl-complete) ("M-." erl-find-source-under-point)("M-," erl-find-source-unwind)("M-*" erl-find-source-unwind))"AdditionalkeystobindwheninErlangshell.") (add
此文档下载收益归作者所有