aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/sh/bash_han.vim
blob: a160165cb7ea2b5b04667e7ba3f8caf3c1f515da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
" Only do this when not done yet for this buffer
" Also do nothing if 'compatible' enabled
if exists('b:did_ftplugin_sh_bash_han') || &compatible
  finish
endif
let b:did_ftplugin_sh_bash_han = 1
if exists('b:undo_ftplugin')
  let b:undo_ftplugin = b:undo_ftplugin
        \ . '|unlet b:did_ftplugin_sh_bash_han'
endif

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