diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2017-11-23 15:44:26 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2017-11-23 15:44:26 +1300 |
commit | f4fff12f339fa5a17794bf64e541fe755715c792 (patch) | |
tree | c0d267e8470d380ba01cc2638dc07f1c475cb0d5 /vim/compiler | |
parent | Merge branch 'hotfix/v0.19.1' into develop (diff) | |
download | dotfiles-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.vim | 17 |
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 |