aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/sh.vim
blob: c09e4fe820e7a2ce9d1373efe72974b603f2cede (plain) (blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
" Default to POSIX shell, as I never write Bourne, and if I write Bash or Ksh
" it'll be denoted with either a shebang or an appropriate extension.
let g:is_posix = 1

"
" Setting g:is_posix above also prompts Vim's core syntax/sh.vim script to
" set g:is_kornshell and thereby b:is_kornshell to the same value as g:is_posix.
"
" That's very confusing, so before it happens we'll copy b:is_kornshell's
" value as determined by filetype.vim and ~/.vim/ftdetect/sh.vim into a custom
" variable b:is_ksh, before its meaning gets confused.
"
" b:is_ksh as a name is more inline with b:is_bash and b:is_sh, anyway, so
" we'll just treat b:is_kornshell like it's both misnamed and broken.
"
" We can then switch on our custom variable in ~/.vim/after/syntax/sh.vim to
" apply settings that actually *are* unique to Korn shell and its derivatives.
"
if exists('b:is_kornshell')
  let b:is_ksh = b:is_kornshell
endif

" Use han(1df) as a man(1) wrapper for Bash files if available
if exists('b:is_bash') && executable('han')
  setlocal keywordprg=han
endif

" Map checker based on shell family
if exists('b:is_bash') && b:is_bash
  let b:check = 'bash -n'
elseif exists('b:is_ksh') && b:is_ksh
  let b:check = 'ksh -n'
else
  let b:check = 'sh -n'
endif
nnoremap <buffer> <silent> <LocalLeader>c
      \ :<C-U>execute ':write !' . b:check<CR>

" Map linter based on shell family
if exists('b:is_bash') && b:is_bash
  let b:lint = 'shellcheck -s bash -'
elseif exists('b:is_ksh') && b:is_ksh
  let b:lint = 'shellcheck -s ksh -'
else
  let b:lint = 'shellcheck -s sh -'
endif
nnoremap <buffer> <silent> <LocalLeader>l
      \ :<C-U>execute ':write !' . b:lint<CR>