Files
dotfiles/.emacs.d/elpa/haskell-mode-13.12/snippets/haskell-mode/fn
2015-05-27 18:47:14 +02:00

9 lines
261 B
Plaintext

# -*- mode: snippet -*-
# key: fn
# name: simple function
# condition: (= (length "fn") (current-column))
# expand-env: ((yas-indent-line 'fixed))
# contributor: Luke Hoersten <luke@hoersten.org>
# --
${1:f} :: ${2:a} ${3:-> ${4:b}}
$1 ${5:x} = ${6:undefined}$0