el-get/recipes/hs-mode.rcp
Vincent Bernat 1ac5d5f9f9 Modify auto-mode-alist in prepare step
When lazy mode is enabled, altering `auto-mode-alist` in `post-init`
won't work until the mode is enabled a first time. We move all
modifications of `auto-mode-alist` in `prepare`.
2015-03-12 22:46:21 -04:00

16 lines
637 B
Plaintext

(:name hs-mode
:description "Haskell editing mode."
:type github
:pkgname "chrisdone/haskell-emacs"
:depends (peg auto-complete auto-complete-etags paredit)
:load-path ("./src/")
:features (hs)
:prepare (progn
;; From examples/init.el
(add-to-list 'auto-mode-alist
(cons "\\.hs\\'" 'hs-mode))
(add-to-list 'auto-mode-alist
(cons "\\.cabal\\'" 'hs-cabal-mode))
(add-to-list 'auto-mode-alist
'("\\.hcr\\'" . hs-core-mode))))