aboutsummaryrefslogtreecommitdiff
path: root/vim/compiler
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-12-08 10:12:09 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-12-08 10:12:09 +1300
commitb0e6149e44726c1a0b32d549ff3c6ee2d8b4b574 (patch)
treec260e5929b3f25b1ed37963f49a1a853c1754f26 /vim/compiler
parentMerge branch 'hotfix/v0.19.1' (diff)
parentBump verison number to 0.20.0 (diff)
downloaddotfiles-b0e6149e44726c1a0b32d549ff3c6ee2d8b4b574.tar.gz
dotfiles-b0e6149e44726c1a0b32d549ff3c6ee2d8b4b574.zip
Merge branch 'release/v0.20.0'v0.20.0
* release/v0.20.0: Bump verison number to 0.20.0 Add some comments to vintrc Make vim-vint allow saying ":set nocompatible" Add install target for vim-vint Update submodule paths Add syntax checking with zsh -n for Z shell Use consistent indentation for bulleted list items Update sahara submodule Correct a homophone error in a comment
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