Emacs / TextMate code completion for Erlang?

ESense looks dead; What are your guidelines for completing Erlang code in Emacs? This should not be a fantasy (ESense built an index from Erlang source); even something that just uses the Erlang functions module_info/0 and module_info/1 to introspect function names would help.

If not available in Emacs, can you recommend it for TextMate?

+7
erlang emacs textmate code-completion
source share
4 answers

I have successfully used autocomplete.

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) 
+4
source share

Do you already know about distel?

+1
source share

distel should be able to compete with function names using information from node

0
source share

I have one job that I use for my own development. His at

http://github.com/rajivr/erlang.tmbundle

Feel free to try and ping me if you have any problems.

-one
source share

All Articles