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