aboutsummaryrefslogtreecommitdiff
path: root/vim/compiler/sh.vim
blob: ff5ed3146a68517a5851c7e246d5063ee40f2999 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
if exists('g:current_compiler')
  finish
endif
let g:current_compiler = 'sh'

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=sh\ -n\ %:S
else
  CompilerSet makeprg=sh\ -n\ %
endif
CompilerSet errorformat=%f:\ %l:\ %m