el-get/recipes/caml-mode.rcp
OOHASHI Daichi 907bdfa8c5 recipe: update caml-mode recipe. (#2396)
OCaml repository has moved to github.
2016-06-13 15:42:59 +02:00

16 lines
654 B
Plaintext

(:name caml-mode
:description "OCaml code editing commands for Emacs"
:type github
:pkgname "ocaml/ocaml"
:load-path ("emacs")
: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)))
)