aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-09 02:39:02 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-09 02:39:02 +1200
commit6992cf8831eebde69f6ee6e9fd95906035d369cb (patch)
tree5febc80041a5a1e518a8ef11fd6a1473a2302709 /vim
parentMerge branch 'release/v5.25.0' into develop (diff)
parentBump VERSION (diff)
downloaddotfiles-6992cf8831eebde69f6ee6e9fd95906035d369cb.tar.gz
dotfiles-6992cf8831eebde69f6ee6e9fd95906035d369cb.zip
Merge branch 'hotfix/v5.25.1' into develop
* hotfix/v5.25.1: Correct backwards runtime check
Diffstat (limited to 'vim')
-rw-r--r--vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index ff6ac208..f05f6716 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -96,7 +96,7 @@ endif
" for that particular context, but it's not really worth the extra complexity
" for such a niche situation.
"
-if $MYVIM != '' || $MYVIM =~# '[*?[|;&<>\r\n,]'
+if $MYVIM ==# '' || $MYVIM =~# '[*?[|;&<>\r\n,]'
echoerr 'Illegal user runtime path, halting user init'
finish
endif