mirror of
https://github.com/preservim/nerdcommenter.git
synced 2024-11-29 12:16:18 +08:00
add support for mason
This commit is contained in:
parent
e52840527a
commit
6b2cc6c41d
|
@ -862,6 +862,7 @@ to get illegal syntax when uncommenting them.
|
|||
|
||||
2.1.15
|
||||
- added support for pamconf, thanks to Martin Kustermann
|
||||
- added support for mason
|
||||
|
||||
2.1.14
|
||||
- added support for gitconfig, tar, nerdtree
|
||||
|
@ -1252,3 +1253,4 @@ Christophe Benz services, gitcommit
|
|||
A Pontus vimperator
|
||||
Stromnov slice
|
||||
Martin Kustermann pamconf
|
||||
Indriði Einarsson mason
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
" vim global plugin that provides easy code commenting for various file types
|
||||
" Last Change: 17 May 2008
|
||||
" Last Change: 24 May 2008
|
||||
" Maintainer: Martin Grenfell <martin_grenfell at msn.com>
|
||||
let s:NERD_commenter_version = 2.1.14
|
||||
|
||||
|
@ -482,6 +482,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
|||
call s:MapDelimiters('<!--', '-->')
|
||||
elseif a:filetype == "masm"
|
||||
call s:MapDelimiters(';', '')
|
||||
elseif a:filetype == "mason"
|
||||
call s:MapDelimiters('<% #', '%>')
|
||||
elseif a:filetype == "master"
|
||||
call s:MapDelimiters('$', '')
|
||||
elseif a:filetype == "matlab"
|
||||
|
|
Loading…
Reference in New Issue
Block a user