mirror of
https://github.com/preservim/nerdcommenter.git
synced 2025-11-12 03:33:48 -05:00
made a hack fix to haskell comments
This commit is contained in:
@@ -852,9 +852,13 @@ if your face looked like a toaster and a t-rex put together? :(
|
|||||||
==============================================================================
|
==============================================================================
|
||||||
7. Changelog *NERDComChangelog*
|
7. Changelog *NERDComChangelog*
|
||||||
|
|
||||||
|
2.1.17
|
||||||
|
- fixed haskell delimiters (hackily). Thanks to Elias Pipping.
|
||||||
|
|
||||||
2.1.16
|
2.1.16
|
||||||
- compatibility fix for vim7.2, cheers to Ben Schmidt, David Fishburn, and
|
- compatibility fix for vim7.2, cheers to Ben Schmidt, David Fishburn, and
|
||||||
Erik Falor for the emails, and to JaGoTerr for posting the issue.
|
Erik Falor for the emails, and to JaGoTerr for posting the issue.
|
||||||
|
|
||||||
2.1.15
|
2.1.15
|
||||||
- added pamconf support, thanks to Martin Kustermann
|
- added pamconf support, thanks to Martin Kustermann
|
||||||
- added mason support, thanks to Indriði Einarsson
|
- added mason support, thanks to Indriði Einarsson
|
||||||
@@ -1195,6 +1199,8 @@ Thanks to tpope for the english lesson.
|
|||||||
Thanks to Ben Schmidt, David Fishburn, and Erik Falor for emailing me about an
|
Thanks to Ben Schmidt, David Fishburn, and Erik Falor for emailing me about an
|
||||||
incompatibility with vim7.2. Thanks also to JaGoTerr for posting the issue.
|
incompatibility with vim7.2. Thanks also to JaGoTerr for posting the issue.
|
||||||
|
|
||||||
|
Thanks to Elias Pipping for sending me a bug report about haskell commenting.
|
||||||
|
|
||||||
Not to forget! Thanks to the following people for sending me new filetypes to
|
Not to forget! Thanks to the following people for sending me new filetypes to
|
||||||
support :D
|
support :D
|
||||||
|
|
||||||
|
|||||||
@@ -384,7 +384,7 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
|||||||
elseif a:filetype == "gtkrc"
|
elseif a:filetype == "gtkrc"
|
||||||
call s:MapDelimiters('#', '')
|
call s:MapDelimiters('#', '')
|
||||||
elseif a:filetype == "haskell"
|
elseif a:filetype == "haskell"
|
||||||
call s:MapDelimitersWithAlternative('--','', '{-', '-}')
|
call s:MapDelimitersWithAlternative('{-','-}', '--', '--')
|
||||||
elseif a:filetype == "hb"
|
elseif a:filetype == "hb"
|
||||||
call s:MapDelimiters('#', '')
|
call s:MapDelimiters('#', '')
|
||||||
elseif a:filetype == "h"
|
elseif a:filetype == "h"
|
||||||
|
|||||||
Reference in New Issue
Block a user