aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/sh.vim
blob: 7f453e92e277fef14f6f8cb9b38a099d327f4c69 (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
"
" If we have a #!/bin/sh shebang and filetype.vim determined we were neither
" POSIX nor Bash nor Korn shell, we'll guess POSIX, just because it's far more
" likely that's what I want to write than plain Bourne shell.
"
" You're supposed to be able to do this by setting g:is_posix, but if that's
" set, the syntax file ends up setting g:is_kornshell for you too, for reasons
" I don't really understand. This method works though, and is cleaner than
" the other workaround I had been trying.
"
if exists('b:is_sh')
  unlet b:is_sh
  if !exists('b:is_bash') && !exists('b:is_kornshell')
    let b:is_posix = 1
  endif
endif

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

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

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