aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaad Parwaiz <saad.parwaiz1@gmail.com>2021-01-27 19:56:26 +0000
committerSaad Parwaiz <saad.parwaiz1@gmail.com>2021-01-30 20:50:04 +0000
commit55fed9a2b0f33b2d86d45718c5c235ce62de05fa (patch)
tree1536444e9108742ac609bc3cc04d7d7eff973b93
parentbf1da7424d5597f5de47d8dc7aad3a0b2ba42064 (diff)
downloadrneovim-55fed9a2b0f33b2d86d45718c5c235ce62de05fa.tar.gz
rneovim-55fed9a2b0f33b2d86d45718c5c235ce62de05fa.tar.bz2
rneovim-55fed9a2b0f33b2d86d45718c5c235ce62de05fa.zip
runtime/zsh: 23515b4ef7580af8b9d3b964a558ab2007cacda5
port zsh compiler only
-rw-r--r--runtime/compiler/zsh.vim23
1 files changed, 23 insertions, 0 deletions
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 <dougkearns@gmail.com>
+" 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 <args>
+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