Added haskelll snip.

This commit is contained in:
ujihisa 2012-10-20 19:16:15 -07:00
parent 76e8612410
commit 5919706b02
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,22 @@
snippet import
abbr import qualified ... as ...
import qualified ${1} as ${2}
snippet importOnly
abbr import ... (...)
import ${1} (${2})
snippet language
abbr {-# LANGUAGE ... #-}
{-# LANGUAGE ${1} #-}
# hard-tab is necessary
snippet case
abbr case ... of
case ${1} of
${2} -> ${0}
snippet main
abbr main = do
main = do
${0}

View File

@ -445,6 +445,7 @@ CHANGELOG *neosnippet-changelog*
2012-10-20
- Improved scala snip.
- Added haskell snip.
2012-10-19
- Fixed syntax highlight.