We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f3b4e2 commit a87c4f8Copy full SHA for a87c4f8
syntax/haskell.vim
@@ -105,7 +105,7 @@ syn match haskellPreProc "^#.*$"
105
syn keyword haskellTodo TODO FIXME contained
106
" Treat a shebang line at the start of the file as a comment
107
syn match haskellShebang "\%^#!.*$"
108
-if get(g:, 'haskell_disable_TH', 0)
+if !get(g:, 'haskell_disable_TH', 0)
109
syn match haskellQuasiQuoted "." containedin=haskellQuasiQuote contained
110
syn region haskellQuasiQuote matchgroup=haskellTH start="\[[_a-zA-Z][a-zA-z0-9._']*|" end="|\]"
111
syn region haskellTHBlock matchgroup=haskellTH start="\[\(d\|t\|p\)\?|" end="|]" contains=TOP
0 commit comments