comparison .emacs.d/haskell-mode/snippets/haskell-mode/data.inline @ 0:2764b4f45f9f

1st commit
author Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
date Mon, 21 Apr 2014 04:30:59 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:2764b4f45f9f
1 # -*- mode: snippet -*-
2 # key: data
3 # name: inline data
4 # condition: (= (length "data") (current-column))
5 # contributor: Luke Hoersten <luke@hoersten.org>
6 # --
7 data ${1:Type} = ${2:Data}$0 ${3:deriving (${4:Show, Eq})}