1
0
nvim-config/UltiSnips/haskell.snippets
valeth d6fcdb2060 add ultisnips plugin
add snippets in UltiSnips
add python modules in pythonx/ultisnips
2016-04-21 21:18:46 +02:00

12 lines
187 B
Plaintext

snippet mod "Create new module" b
module ${1:`!v expand("%:p:h:t")`} (
) where
endsnippet
snippet hdfun "Haddock function documentation" b
-- | ${1:DESCRIPTION}
-- ${2}
endsnippet