diff options
Diffstat (limited to 'after/ftplugin/haskell.vim')
-rw-r--r-- | after/ftplugin/haskell.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/after/ftplugin/haskell.vim b/after/ftplugin/haskell.vim index 9fa505f7..2d3d6b33 100644 --- a/after/ftplugin/haskell.vim +++ b/after/ftplugin/haskell.vim @@ -1,6 +1,6 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'haskell') == -1 - +if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'haskell') != -1 + finish +endif + setlocal comments=s1fl:{-,mb:\ \ ,ex:-},:-- setlocal iskeyword+=' - -endif |