summaryrefslogtreecommitdiffstats
path: root/syntax/cucumber.vim
diff options
context:
space:
mode:
Diffstat (limited to 'syntax/cucumber.vim')
-rw-r--r--syntax/cucumber.vim8
1 files changed, 7 insertions, 1 deletions
diff --git a/syntax/cucumber.vim b/syntax/cucumber.vim
index c5bde9e5..f1ef2992 100644
--- a/syntax/cucumber.vim
+++ b/syntax/cucumber.vim
@@ -2,11 +2,14 @@
" Language: Cucumber
" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
" Filenames: *.feature
-" Last Change: 2010 May 21
+" Last Change: 2013 May 30
if exists("b:current_syntax")
finish
endif
+let s:keepcpo= &cpo
+set cpo&vim
+
syn case match
syn sync minlines=20
@@ -133,4 +136,7 @@ hi def link cucumberThen Type
let b:current_syntax = "cucumber"
+let &cpo = s:keepcpo
+unlet s:keepcpo
+
" vim:set sts=2 sw=2: