/usr/share/el-get/recipes/tuareg-mode.rcp is in el-get 3.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | (:name tuareg-mode
:type git
:url "git://github.com/afeinberg/tuareg-mode.git"
: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))))
|