add support for cucumber

This commit is contained in:
Martin Grenfell
2009-03-06 14:59:51 +13:00
parent 81307ff269
commit 11114745bd
2 changed files with 4 additions and 0 deletions

View File

@@ -807,6 +807,7 @@ if your face looked like a toaster and a t-rex put together? :(
- add support for javacc, thanks to Matt Tolton. - add support for javacc, thanks to Matt Tolton.
- make <%# %> the default delims for eruby, thanks to tpope. - make <%# %> the default delims for eruby, thanks to tpope.
- add support for javascript.jquery, thanks to Ivan Devat. - add support for javascript.jquery, thanks to Ivan Devat.
- add support for cucumber, thanks to tpope
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.
@@ -1071,6 +1072,7 @@ Andrey Skvortsov mp
Simon Hengel htmlcheetah Simon Hengel htmlcheetah
Matt Tolton javacc Matt Tolton javacc
Ivan Devat javascript.jquery Ivan Devat javascript.jquery
tpope cucumber
============================================================================== ==============================================================================
9. License *NERDComLicense* 9. License *NERDComLicense*

View File

@@ -236,6 +236,8 @@ function s:SetUpForNewFiletype(filetype, forceReset)
call s:MapDelimiters('/*','*/') call s:MapDelimiters('/*','*/')
elseif a:filetype ==? "cterm" elseif a:filetype ==? "cterm"
call s:MapDelimiters('*', '') call s:MapDelimiters('*', '')
elseif a:filetype ==? "cucumber"
call s:MapDelimiters('#','')
elseif a:filetype ==? "cupl" elseif a:filetype ==? "cupl"
call s:MapDelimiters('/*','*/') call s:MapDelimiters('/*','*/')
elseif a:filetype ==? "csv" elseif a:filetype ==? "csv"