aboutsummaryrefslogtreecommitdiff
path: root/vim/compiler
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-23 15:44:26 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-23 15:44:26 +1300
commitf4fff12f339fa5a17794bf64e541fe755715c792 (patch)
treec0d267e8470d380ba01cc2638dc07f1c475cb0d5 /vim/compiler
parentMerge branch 'hotfix/v0.19.1' into develop (diff)
downloaddotfiles-f4fff12f339fa5a17794bf64e541fe755715c792.tar.gz
dotfiles-f4fff12f339fa5a17794bf64e541fe755715c792.zip
Add syntax checking with zsh -n for Z shell
Diffstat (limited to 'vim/compiler')
-rw-r--r--vim/compiler/zsh.vim17
1 files changed, 17 insertions, 0 deletions
diff --git a/vim/compiler/zsh.vim b/vim/compiler/zsh.vim
new file mode 100644
index 00000000..685a01ad
--- /dev/null
+++ b/vim/compiler/zsh.vim
@@ -0,0 +1,17 @@
+if exists('g:current_compiler')
+ finish
+endif
+let g:current_compiler = 'zsh'
+
+if exists(':CompilerSet') != 2
+ command -nargs=* CompilerSet setlocal <args>
+endif
+
+" 7.4.191 is the earliest version with the :S file name modifier, which we
+" really should use if we can
+if v:version >= 704 || v:version == 704 && has('patch191')
+ CompilerSet makeprg=zsh\ -n\ %:S
+else
+ CompilerSet makeprg=zsh\ -n\ %
+endif
+CompilerSet errorformat=%f:%l:\ %m