el-get/recipes/tuareg-mode.rcp
2012-02-28 16:39:10 -08:00

13 lines
566 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 (".")
:prepare
(progn
(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))
(add-to-list 'auto-mode-alist '("\\.ml[iylp]?" . tuareg-mode))))