el-get/recipes/caml-mode.rcp
2019-05-01 11:56:29 +09:00

16 lines
654 B
Plaintext

(:name caml-mode
:description "OCaml code editing commands for Emacs"
:type github
:pkgname "ocaml/caml-mode"
:load-path (".")
:shallow t
:prepare
(progn
(autoload 'caml-mode "caml" "Major mode for editing OCaml code." t)
(autoload 'run-caml "inf-caml" "Run an inferior OCaml process." t)
(autoload 'camldebug "camldebug" "Run ocamldebug on program." t)
(add-to-list 'auto-mode-alist '("\\.ml[iylp]?$" . caml-mode))
(add-to-list 'interpreter-mode-alist '("ocamlrun" . caml-mode))
(add-to-list 'interpreter-mode-alist '("ocaml" . caml-mode)))
)