From ca42611aec7e22165f01bb1c89016d163bdcd455 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 17 Jul 2018 22:48:51 +1200 Subject: Check b:is_posix existence not value --- vim/after/ftplugin/sh.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'vim/after/ftplugin/sh.vim') 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 -- cgit v1.2.3