add support for mason

This commit is contained in:
Martin Grenfell 2008-05-24 16:35:03 +12:00
parent e52840527a
commit 6b2cc6c41d
2 changed files with 5 additions and 1 deletions

View File

@ -862,6 +862,7 @@ to get illegal syntax when uncommenting them.
2.1.15 2.1.15
- added support for pamconf, thanks to Martin Kustermann - added support for pamconf, thanks to Martin Kustermann
- added support for mason
2.1.14 2.1.14
- added support for gitconfig, tar, nerdtree - added support for gitconfig, tar, nerdtree
@ -1252,3 +1253,4 @@ Christophe Benz services, gitcommit
A Pontus vimperator A Pontus vimperator
Stromnov slice Stromnov slice
Martin Kustermann pamconf Martin Kustermann pamconf
Indriði Einarsson mason

View File

@ -1,5 +1,5 @@
" vim global plugin that provides easy code commenting for various file types " 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> " Maintainer: Martin Grenfell <martin_grenfell at msn.com>
let s:NERD_commenter_version = 2.1.14 let s:NERD_commenter_version = 2.1.14
@ -482,6 +482,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
call s:MapDelimiters('<!--', '-->') call s:MapDelimiters('<!--', '-->')
elseif a:filetype == "masm" elseif a:filetype == "masm"
call s:MapDelimiters(';', '') call s:MapDelimiters(';', '')
elseif a:filetype == "mason"
call s:MapDelimiters('<% #', '%>')
elseif a:filetype == "master" elseif a:filetype == "master"
call s:MapDelimiters('$', '') call s:MapDelimiters('$', '')
elseif a:filetype == "matlab" elseif a:filetype == "matlab"