diff --git a/doc/NERD_commenter.txt b/doc/NERD_commenter.txt index f6386d7..7bbcc85 100644 --- a/doc/NERD_commenter.txt +++ b/doc/NERD_commenter.txt @@ -866,6 +866,8 @@ to get illegal syntax when uncommenting them. - added support for spectre, thx to Brett Warneke - fixed a bug that was screwing up the removal of spaces when NERDSpaceDelims was set. Thx to David Miani for posting the issue. + - added dummy support for lhaskell, thx to pipp for posting the issue + 2.1.7 - added support for haml, thx to Greb Weber @@ -1177,4 +1179,4 @@ Aaron Schaefer factor Laurent ARNOUD asterisk Kuchma Michael plsql Brett Warneke spectre - +Pipp lhaskell diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 8e7638d..33389b8 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -416,6 +416,8 @@ function s:SetUpForNewFiletype(filetype, forceReset) call s:MapDelimiters('/*','*/') elseif a:filetype == "lftp" call s:MapDelimiters('#', '') + elseif a:filetype == "lhaskell" + call s:MapDelimiters('','') elseif a:filetype == "lifelines" call s:MapDelimiters('/*','*/') elseif a:filetype == "lilo"