Modify fsharp-mode recipe

This commit is contained in:
USAMI Kenta 2014-03-16 04:15:20 +09:00
parent 88ce2addca
commit 25fd583900

View File

@ -1,8 +1,11 @@
(:name fsharp-mode
:description "Major mode for editing fsharp code."
:type svn
:url "https://fsharp-mode.svn.sourceforge.net/svnroot/fsharp-mode"
:load-path (".")
:features (fsharp inf-fsharp)
:post-init (add-to-list 'auto-mode-alist
'("\\.fs[iylx]?$" . fsharp-mode)))
:type github
:pkgname "rneatherway/emacs-fsharp-mode-bin"
:website "https://github.com/fsharp/fsharpbinding"
:depends (auto-complete popup pos-tip s dash)
:prepare (progn
(autoload 'fsharp-mode "fsharp-mode"
"Major mode for editing F# code." t)
(add-to-list 'auto-mode-alist
'("\\.fs[iylx]?$" . fsharp-mode))))