about summary refs log tree commit diff
path: root/Util
diff options
context:
space:
mode:
authorDaniel Shahaf <danielsh@apache.org>2019-12-21 11:43:29 +0000
committerDaniel Shahaf <danielsh@apache.org>2019-12-22 03:20:55 +0000
commit43761827f9ae152fe41ee6e27d408aa57b045b32 (patch)
treeb74df97945487cc888444f8a8ba95b745d10f0f7 /Util
parent3003463c802dd31355d9bf7ed81efcfcfa832a83 (diff)
downloadzsh-43761827f9ae152fe41ee6e27d408aa57b045b32.tar.gz
zsh-43761827f9ae152fe41ee6e27d408aa57b045b32.tar.xz
zsh-43761827f9ae152fe41ee6e27d408aa57b045b32.zip
45109: Add Vim highlighting file for Test/*.ztst files.
Diffstat (limited to 'Util')
-rw-r--r--Util/zyodl.vim5
1 files changed, 4 insertions, 1 deletions
diff --git a/Util/zyodl.vim b/Util/zyodl.vim
index d0d3cf54f..7bde946c1 100644
--- a/Util/zyodl.vim
+++ b/Util/zyodl.vim
@@ -35,6 +35,8 @@
 if exists("b:current_syntax")
   finish
 endif
+let s:cpo_save = &cpo
+set cpo&vim
 
 "" Syntax groups:
 syn clear
@@ -80,4 +82,5 @@ hi def link zyodlSItemArg1 Macro
 hi def link zyodlSItemArg2 Underlined
 
 let b:current_syntax = "zyodl"
-
+let &cpo = s:cpo_save
+unlet s:cpo_save