mirror of
https://github.com/preservim/nerdcommenter.git
synced 2025-02-01 03:50:46 +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
|
- add support for dhcpd, limits, ntp, resolv, rgb, sysctl, udevconf and
|
||||||
udevrules. Thanks to Thilo Six.
|
udevrules. Thanks to Thilo Six.
|
||||||
- match filetypes case insensitively
|
- match filetypes case insensitively
|
||||||
|
- add support for mp (metapost), thanks to Andrey Skvortsov.
|
||||||
|
|
||||||
2.2.1
|
2.2.1
|
||||||
- add support for newlisp and clojure, thanks to Matthew Lee Hinman.
|
- add support for newlisp and clojure, thanks to Matthew Lee Hinman.
|
||||||
|
@ -1062,7 +1063,7 @@ Stefan Walk sieve
|
||||||
Adam Thorsen objj
|
Adam Thorsen objj
|
||||||
Thilo Six dhcpd, limits, ntp, resolv, rgb, sysctl,
|
Thilo Six dhcpd, limits, ntp, resolv, rgb, sysctl,
|
||||||
udevconf, udevrules
|
udevconf, udevrules
|
||||||
|
Andrey Skvortsov mp
|
||||||
==============================================================================
|
==============================================================================
|
||||||
9. License *NERDComLicense*
|
9. License *NERDComLicense*
|
||||||
|
|
||||||
|
|
|
@ -539,6 +539,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
|
||||||
call s:MapDelimiters('(*','*)')
|
call s:MapDelimiters('(*','*)')
|
||||||
elseif a:filetype ==? "monk"
|
elseif a:filetype ==? "monk"
|
||||||
call s:MapDelimiters(';', '')
|
call s:MapDelimiters(';', '')
|
||||||
|
elseif a:filetype ==? "mp"
|
||||||
|
call s:MapDelimiters('%', '')
|
||||||
elseif a:filetype ==? "mplayerconf"
|
elseif a:filetype ==? "mplayerconf"
|
||||||
call s:MapDelimiters('#', '')
|
call s:MapDelimiters('#', '')
|
||||||
elseif a:filetype ==? "mrxvtrc"
|
elseif a:filetype ==? "mrxvtrc"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user