mirror of
https://github.com/preservim/nerdcommenter.git
synced 2025-02-21 03:40:22 +08:00
made a hack fix to haskell comments
This commit is contained in:
parent
865d928a1f
commit
2ea675da5e
@ -852,9 +852,13 @@ if your face looked like a toaster and a t-rex put together? :(
|
||||
==============================================================================
|
||||
7. Changelog *NERDComChangelog*
|
||||
|
||||
2.1.17
|
||||
- fixed haskell delimiters (hackily). Thanks to Elias Pipping.
|
||||
|
||||
2.1.16
|
||||
- compatibility fix for vim7.2, cheers to Ben Schmidt, David Fishburn, and
|
||||
Erik Falor for the emails, and to JaGoTerr for posting the issue.
|
||||
|
||||
2.1.15
|
||||
- added pamconf support, thanks to Martin Kustermann
|
||||
- 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
|
||||
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
|
||||
support :D
|
||||
|
||||
|
@ -384,7 +384,7 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
||||
elseif a:filetype == "gtkrc"
|
||||
call s:MapDelimiters('#', '')
|
||||
elseif a:filetype == "haskell"
|
||||
call s:MapDelimitersWithAlternative('--','', '{-', '-}')
|
||||
call s:MapDelimitersWithAlternative('{-','-}', '--', '--')
|
||||
elseif a:filetype == "hb"
|
||||
call s:MapDelimiters('#', '')
|
||||
elseif a:filetype == "h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user