mirror of
https://github.com/preservim/nerdcommenter.git
synced 2025-01-19 23:12:45 +08:00
add support for mp (metapost) filetype
This commit is contained in:
parent
10c120478c
commit
95c368779b
|
@ -802,6 +802,7 @@ if your face looked like a toaster and a t-rex put together? :(
|
|||
- add support for dhcpd, limits, ntp, resolv, rgb, sysctl, udevconf and
|
||||
udevrules. Thanks to Thilo Six.
|
||||
- match filetypes case insensitively
|
||||
- add support for mp (metapost), thanks to Andrey Skvortsov.
|
||||
|
||||
2.2.1
|
||||
- add support for newlisp and clojure, thanks to Matthew Lee Hinman.
|
||||
|
@ -1062,7 +1063,7 @@ Stefan Walk sieve
|
|||
Adam Thorsen objj
|
||||
Thilo Six dhcpd, limits, ntp, resolv, rgb, sysctl,
|
||||
udevconf, udevrules
|
||||
|
||||
Andrey Skvortsov mp
|
||||
==============================================================================
|
||||
9. License *NERDComLicense*
|
||||
|
||||
|
|
|
@ -539,6 +539,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
|||
call s:MapDelimiters('(*','*)')
|
||||
elseif a:filetype ==? "monk"
|
||||
call s:MapDelimiters(';', '')
|
||||
elseif a:filetype ==? "mp"
|
||||
call s:MapDelimiters('%', '')
|
||||
elseif a:filetype ==? "mplayerconf"
|
||||
call s:MapDelimiters('#', '')
|
||||
elseif a:filetype ==? "mrxvtrc"
|
||||
|
|
Loading…
Reference in New Issue
Block a user