From f34d267fc1c7ffd6269dac5dfaf7375808b628c7 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 1 Nov 2018 10:06:06 +1300 Subject: Ignore unset variables in sh.vim clear script Error message is: Error detected while processing /home/tom/.vim/after/syntax/sh.vim: line 10: E108: No such variable: "g:is_kornshell" Press ENTER or type command to continue --- vim/after/syntax/sh.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/after/syntax/sh.vim b/vim/after/syntax/sh.vim index 5c15be61..f02f30f5 100644 --- a/vim/after/syntax/sh.vim +++ b/vim/after/syntax/sh.vim @@ -7,7 +7,7 @@ endif " Remove g:is_posix if we resorted to it in order to get correct POSIX sh " highlighting with older Vim runtime files if exists('g:is_posix') - unlet g:is_posix g:is_kornshell + unlet! g:is_posix g:is_kornshell endif " If we know we have another shell type, clear away the others completely, now -- cgit v1.2.3 From 1b0dc0009c7e33181bee8f3a0b2a0c622b0de145 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 1 Nov 2018 10:07:00 +1300 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index b0066372..7529c85a 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v1.71.2 -Tue Oct 30 20:24:47 UTC 2018 +tejr dotfiles v1.71.3 +Wed Oct 31 21:06:39 UTC 2018 -- cgit v1.2.3