aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-11-01 10:08:01 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-11-01 10:08:01 +1300
commitbda5cd6f542dc598df2daea56e48da72efd0074a (patch)
treea41fa4e3de933937b50bbe8ac8a7f0146d7a51f7
parentMerge branch 'hotfix/v1.71.2' into develop (diff)
parentBump VERSION (diff)
downloaddotfiles-bda5cd6f542dc598df2daea56e48da72efd0074a.tar.gz
dotfiles-bda5cd6f542dc598df2daea56e48da72efd0074a.zip
Merge branch 'hotfix/v1.71.3' into develop
* hotfix/v1.71.3: Ignore unset variables in sh.vim clear script
-rw-r--r--VERSION4
-rw-r--r--vim/after/syntax/sh.vim2
2 files changed, 3 insertions, 3 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
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