mirror of
https://github.com/preservim/nerdcommenter.git
synced 2025-11-11 11:13:47 -05:00
added support for SVNdiff, gitAnnotate and gitdiff
This commit is contained in:
@@ -864,6 +864,8 @@ to get illegal syntax when uncommenting them.
|
|||||||
- added support for patran and dakota, thx to Jacobo Diaz for the email
|
- added support for patran and dakota, thx to Jacobo Diaz for the email
|
||||||
- added support for gentoo-env-d, gentoo-init-d, gentoo-make-conf, grub,
|
- added support for gentoo-env-d, gentoo-init-d, gentoo-make-conf, grub,
|
||||||
modconf and sudoers filetypes, thx to Li Jin for the patch.
|
modconf and sudoers filetypes, thx to Li Jin for the patch.
|
||||||
|
- added support for SVNdiff, gitAnnotate, gitdiff. Thx to nicothakis for
|
||||||
|
posting the issue
|
||||||
|
|
||||||
2.1.11
|
2.1.11
|
||||||
- fixed a bug with the selection option and visual commenting (again).
|
- fixed a bug with the selection option and visual commenting (again).
|
||||||
@@ -1214,8 +1216,10 @@ Pipp lhaskell
|
|||||||
Renald Buter scala
|
Renald Buter scala
|
||||||
Vladimir Lomov asymptote
|
Vladimir Lomov asymptote
|
||||||
Marco mrxvtrc, aap
|
Marco mrxvtrc, aap
|
||||||
nicothakis SVNAnnotate, CVSAnnotate, SVKAnnotate
|
nicothakis SVNAnnotate, CVSAnnotate, SVKAnnotate,
|
||||||
|
SVNdiff, gitAnnotate, gitdiff
|
||||||
Chen Xing Wikipedia
|
Chen Xing Wikipedia
|
||||||
Jacobo Diaz dakota, patran
|
Jacobo Diaz dakota, patran
|
||||||
Li Jin gentoo-env-d, gentoo-init-d,
|
Li Jin gentoo-env-d, gentoo-init-d,
|
||||||
gentoo-make-conf, grub, modconf, sudoers
|
gentoo-make-conf, grub, modconf, sudoers
|
||||||
|
|
||||||
|
|||||||
@@ -356,6 +356,10 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
|||||||
call s:MapDelimiters('#', '')
|
call s:MapDelimiters('#', '')
|
||||||
elseif a:filetype == 'gentoo-package-use'
|
elseif a:filetype == 'gentoo-package-use'
|
||||||
call s:MapDelimiters('#', '')
|
call s:MapDelimiters('#', '')
|
||||||
|
elseif a:filetype == 'gitAnnotate'
|
||||||
|
call s:MapDelimiters('', '')
|
||||||
|
elseif a:filetype == 'gitdiff'
|
||||||
|
call s:MapDelimiters('', '')
|
||||||
elseif a:filetype == "gnuplot"
|
elseif a:filetype == "gnuplot"
|
||||||
call s:MapDelimiters('#','')
|
call s:MapDelimiters('#','')
|
||||||
elseif a:filetype == "groovy"
|
elseif a:filetype == "groovy"
|
||||||
@@ -736,6 +740,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
|||||||
call s:MapDelimiters('','')
|
call s:MapDelimiters('','')
|
||||||
elseif a:filetype == "SVNcommitlog"
|
elseif a:filetype == "SVNcommitlog"
|
||||||
call s:MapDelimiters('','')
|
call s:MapDelimiters('','')
|
||||||
|
elseif a:filetype == "SVNdiff"
|
||||||
|
call s:MapDelimiters('','')
|
||||||
elseif a:filetype == "systemverilog"
|
elseif a:filetype == "systemverilog"
|
||||||
call s:MapDelimitersWithAlternative('//','', '/*','*/')
|
call s:MapDelimitersWithAlternative('//','', '/*','*/')
|
||||||
elseif a:filetype == "tads"
|
elseif a:filetype == "tads"
|
||||||
|
|||||||
Reference in New Issue
Block a user