add support for javascript.jquery

This commit is contained in:
Martin Grenfell
2009-01-15 13:05:49 +13:00
parent 19147a70cc
commit 4b680f34e9
2 changed files with 4 additions and 0 deletions

View File

@@ -806,6 +806,7 @@ if your face looked like a toaster and a t-rex put together? :(
- add support for htmlcheetah, thanks to Simon Hengel.
- add support for javacc, thanks to Matt Tolton.
- make <%# %> the default delims for eruby, thanks to tpope.
- add support for javascript.jquery, thanks to Ivan Devat.
2.2.1
- add support for newlisp and clojure, thanks to Matthew Lee Hinman.
@@ -1069,6 +1070,7 @@ Thilo Six dhcpd, limits, ntp, resolv, rgb, sysctl,
Andrey Skvortsov mp
Simon Hengel htmlcheetah
Matt Tolton javacc
Ivan Devat javascript.jquery
==============================================================================
9. License *NERDComLicense*

View File

@@ -430,6 +430,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
call s:MapDelimitersWithAlternative('//','', '/*','*/')
elseif a:filetype ==? "javascript"
call s:MapDelimitersWithAlternative('//','', '/*','*/')
elseif a:filetype == "javascript.jquery"
call s:MapDelimitersWithAlternative('//','', '/*','*/')
elseif a:filetype ==? "jess"
call s:MapDelimiters(';', '')
elseif a:filetype ==? "jgraph"