using fixed indent-line in haskell-mode

This commit is contained in:
Andrea Crotti 2015-12-03 13:02:37 +00:00
parent 56a9f62c38
commit 3c04732e87
2 changed files with 2 additions and 0 deletions

View file

@ -1,6 +1,7 @@
# -*- mode: snippet -*-
# name: case
# key: case
# expand-env: ((yas-indent-line 'fixed))
# --
case ${1:var} of
${2:cond} -> ${3:value}

View file

@ -1,6 +1,7 @@
# -*- mode: snippet -*-
# name: new class
# key: class
# expand-env: ((yas-indent-line 'fixed))
# --
class ${1:Class Name} where
$0