Skip to content

Commit 98eb8f0

Browse files
committed
do not use = as indentation trigger
1 parent 6fed769 commit 98eb8f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

indent/haskell.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ if !exists('g:haskell_indent_guard')
6262
endif
6363

6464
setlocal indentexpr=GetHaskellIndent()
65-
setlocal indentkeys=0},0),0],!^F,o,O,0\=,0=where,0=let,0=deriving,<space>
65+
setlocal indentkeys=0},0),0],!^F,o,O,0=where,0=let,0=deriving,<space>
6666

6767
function! s:isInBlock(hlstack)
6868
return index(a:hlstack, 'haskellDelimiter') > -1 || index(a:hlstack, 'haskellParens') > -1 || index(a:hlstack, 'haskellBrackets') > -1 || index(a:hlstack, 'haskellBlock') > -1 || index(a:hlstack, 'haskellBlockComment') > -1 || index(a:hlstack, 'haskellPragma') > -1

0 commit comments

Comments
 (0)