summaryrefslogtreecommitdiffstats
path: root/syntax/cucumber.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2014-04-15 01:05:44 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2014-04-15 01:05:44 +0200
commit610f4c570123510f2d6f4c5799d880d8581126cf (patch)
treea2bbc1de1fbdd22e2b2eb4d4d2447b3cc8467fba /syntax/cucumber.vim
parentf3833f5a39b91f1e42f12e45a2e61e351218c495 (diff)
downloadvim-polyglot-610f4c570123510f2d6f4c5799d880d8581126cf.tar.gz
vim-polyglot-610f4c570123510f2d6f4c5799d880d8581126cf.zip
Update
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: