el-get/recipes/tuareg-mode.rcp
2011-10-02 22:21:54 +04:00

13 lines
572 B
Plaintext

(:name tuareg-mode
:type svn
:url "svn://svn.forge.ocamlcore.org/svn/tuareg/trunk"
:description "A GOOD Emacs mode to edit Objective Caml code."
:load-path (".")
:post-init
(lambda ()
(add-to-list 'auto-mode-alist '("\\.ml[iylp]?" . tuareg-mode))
(autoload 'tuareg-mode "tuareg" "Major mode for editing Caml code" t)
(autoload 'camldebug "camldebug" "Run the Caml debugger" t)
(dolist (ext '(".cmo" ".cmx" ".cma" ".cmxa" ".cmi"))
(add-to-list 'completion-ignored-extensions ext))))