From 011c97960190054ec29cdebd7c87cc4a2bf750d5 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 14 Nov 2017 13:22:28 +1300 Subject: Bump version number --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 89d1ac52..c60d4f62 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v0.17.0 -Mon Nov 13 21:09:10 UTC 2017 +tejr dotfiles v0.17.1 +Tue Nov 14 00:22:18 UTC 2017 -- cgit v1.2.3 From 8e390be202c38979bdd1c3631f3cda01fb851fdd Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 14 Nov 2017 13:23:30 +1300 Subject: Correct stray elseif in auto_undodir.vim This was causing the following error on load: > Error detected while processing /home/tom/.vim/plugin/auto_undodir.vim: > line 48: > E580: :endif without :if: endif --- vim/plugin/auto_undodir.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/plugin/auto_undodir.vim b/vim/plugin/auto_undodir.vim index 0cd54cd0..4382fe18 100644 --- a/vim/plugin/auto_undodir.vim +++ b/vim/plugin/auto_undodir.vim @@ -36,7 +36,7 @@ if !isdirectory(expand(s:undodir)) " Failing that, use an OS-dependent command " (Fortunately, Unix and Windows are the only OS types in the world) elseif has('*shellescape') - elseif has('unix') + if has('unix') silent! execute '!mkdir -m 0700 -p ' \ . shellescape(expand(s:undodir)) elseif has('win32') || has('win64') -- cgit v1.2.3