" Only do this when not done yet for this buffer " Also do nothing if 'compatible' enabled if exists('b:did_ftplugin_sh_check') || &compatible finish endif let b:did_ftplugin_sh_check = 1 let b:undo_ftplugin = b:undo_ftplugin \ . '|unlet b:did_ftplugin_sh_check' " Choose checker based on shell family if exists('b:is_bash') let b:sh_check = 'write !bash -n' elseif exists('b:is_kornshell') let b:sh_check = 'write !ksh -n' else let b:sh_check = 'write !sh -n' endif let b:undo_ftplugin = b:undo_ftplugin \ . '|unlet b:sh_check' " Set up a mapping for the checker, if we're allowed if !exists('g:no_plugin_maps') && !exists('g:no_sh_maps') " Define a mapping target nnoremap \ ShCheck \ :execute b:sh_check let b:undo_ftplugin = b:undo_ftplugin \ . '|nunmap ShCheck' " If there isn't a key mapping already, use a default one if !hasmapto('ShCheck') nmap \ c \ ShCheck let b:undo_ftplugin = b:undo_ftplugin \ . '|nunmap c' endif endif