aboutsummaryrefslogtreecommitdiff
path: root/vim/compiler/zsh.vim
blob: ad82cc3bb66fa9e558a783a3fb2f41c83887348c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
if exists('current_compiler')
  finish
endif
let 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