diff options
Diffstat (limited to 'vim/after')
-rw-r--r-- | vim/after/ftplugin/sh.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vim/after/ftplugin/sh.vim b/vim/after/ftplugin/sh.vim index 88254ea6..475527b9 100644 --- a/vim/after/ftplugin/sh.vim +++ b/vim/after/ftplugin/sh.vim @@ -27,7 +27,8 @@ let b:undo_ftplugin .= '|unlet b:current_compiler b:sh_check_compiler' \ . '|setlocal errorformat< makeprg<' " Resort to g:is_posix for correct syntax on older runtime files -if b:is_posix && (v:version < 800 || v:version == 800 && !has('patch257')) +if exists('b:is_posix') + \ && (v:version < 800 || v:version == 800 && !has('patch257')) let g:is_posix = 1 endif |