Emacs/TextMate code completion for Erlang?

ESense looks dead; what are your recommendations for Erlang code completion in Emacs? It doesn't have to be fancy (ESense built an index from the Erlang source); even something that just uses Erlang's module_info/0 and module_info/1 functions for introspection of function names would help.

If one isn't available in Emacs, can you recommend one for TextMate?


I've used auto-complete successfully.

  • site: http://cx4a.org/software/auto-complete/
  • code: https://github.com/m2ym/auto-complete/
  • and added this to my .emacs file:

    (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)
    

    Do you know about distel already?

  • See Bill Clementson summarize distel mode and its features.

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

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

    上一篇: 计算几何

    下一篇: Erlang的Emacs / TextMate代码完成?