aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/sh/bash_han.vim
blob: c1997d7e838a2215f26e7a6829c52dc9b00a7af5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
" 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
let b:undo_ftplugin = b:undo_ftplugin
      \ . '|unlet b:did_ftplugin_sh_bash_han'

" 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_ftplugin = b:undo_ftplugin
        \ . '|setlocal keywordprg<'
endif