aboutsummaryrefslogtreecommitdiff
path: root/vim/compiler/zsh.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-12-08 10:09:51 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-12-08 10:09:51 +1300
commit9c176e027428a96e58df1e1a718e4abfed2767e5 (patch)
treea9834d5b860fbd83b31fe3261e45fbe378939c0a /vim/compiler/zsh.vim
parentMerge branch 'feature/typofix' into develop (diff)
parentAdd syntax checking with zsh -n for Z shell (diff)
downloaddotfiles-9c176e027428a96e58df1e1a718e4abfed2767e5.tar.gz
dotfiles-9c176e027428a96e58df1e1a718e4abfed2767e5.zip
Merge branch 'feature/vim-zsh-check' into develop
* feature/vim-zsh-check: Add syntax checking with zsh -n for Z shell
Diffstat (limited to 'vim/compiler/zsh.vim')
-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