From 55fed9a2b0f33b2d86d45718c5c235ce62de05fa Mon Sep 17 00:00:00 2001 From: Saad Parwaiz Date: Wed, 27 Jan 2021 19:56:26 +0000 Subject: runtime/zsh: 23515b4ef7580af8b9d3b964a558ab2007cacda5 port zsh compiler only --- runtime/compiler/zsh.vim | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 runtime/compiler/zsh.vim diff --git a/runtime/compiler/zsh.vim b/runtime/compiler/zsh.vim new file mode 100644 index 0000000000..5703c1fc44 --- /dev/null +++ b/runtime/compiler/zsh.vim @@ -0,0 +1,23 @@ +" Vim compiler file +" Compiler: Zsh +" Maintainer: Doug Kearns +" Last Change: 2020 Sep 6 + +if exists("current_compiler") + finish +endif +let current_compiler = "zsh" + +if exists(":CompilerSet") != 2 " older Vim always used :setlocal + command -nargs=* CompilerSet setlocal +endif + +let s:cpo_save = &cpo +set cpo&vim + +CompilerSet makeprg=zsh\ -n\ --\ %:S +CompilerSet errorformat=%f:\ line\ %l:\ %m, + \%-G%.%# + +let &cpo = s:cpo_save +unlet s:cpo_save -- cgit