aboutsummaryrefslogtreecommitdiff
path: root/mutt
ModeNameSize
-rw-r--r--muttrc3025logplainblame
d---------muttrc.d31logplain
Ryder <tom@sanctum.geek.nz> 2018-08-19 20:00:58 +1200 Add option terminators or equivs to :compilers' href='/cgit/dotfiles.git/commit/vim/compiler/shellcheck.vim?h=v1.56.0&id=f010490dcbf07844f3b37b86d3adddcd508a2449'>f010490d
81ff3c0f

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27





















                                                                          
                             
    
                           

                                             
if exists('g:current_compiler')
  finish
endif
let g:current_compiler = 'shellcheck'

if exists(':CompilerSet') != 2
  command -nargs=* CompilerSet setlocal <args>
endif

" Build :CompilerSet command based on buffer shell type
let s:set = 'CompilerSet makeprg=shellcheck\ -e\ SC1090\ -f\ gcc'
if exists('b:is_bash')
  let s:set = s:set . '\ -s\ bash'
elseif exists('b:is_kornshell')
  let s:set = s:set . '\ -s\ ksh'
else
  let s:set = s:set . '\ -s\ sh'
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')
  execute s:set . '\ --\ %:S'
else
  execute s:set . '\ --\ %'
endif
CompilerSet errorformat=%f:%l:%c:\ %m\ [SC%n]