Erlang的Emacs / TextMate代码完成?

ESense看起来死了; 你在Emacs中完成Erlang代码的建议是什么? 它不一定是花哨的(ESense从Erlang来源构建了一个索引); 即使只是使用Erlang的module_info/0module_info/1函数来反省函数名称也会有所帮助。

如果Emacs中没有可用的版本,您可以推荐一个用于TextMate的版本吗?


我已经成功地使用了自动完成功能。

  • 网站:http://cx4a.org/software/auto-complete/
  • 代码:https://github.com/m2ym/auto-complete/
  • 并将其添加到我的.emacs文件中:

    (add-to-list 'load-path "~/dev/emacs/auto-complete")
    (require 'auto-complete-config)
    (add-to-list 'ac-dictionary-directories "~/dev/emacs/auto-complete/dict")
    (ac-config-default)
    
    ; ... after loading erlang-mode
    
    (add-to-list 'ac-modes 'erlang-mode)
    

    你知道distel吗?

  • 请参阅Bill Clementson总结distel模式及其功能。

  • distel应该能够使用来自运行节点的信息来竞争函数名称

    链接地址: http://www.djcxy.com/p/48103.html

    上一篇: Emacs/TextMate code completion for Erlang?

    下一篇: boost compressed matrix basics