From 4e71493804962633524a2e9bf36602d783d99b10 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 3 May 2020 23:47:30 +1200 Subject: Test for correct feature for undoskip.vim plugin The +persistent_undo feature wasn't added until Vim v7.3. --- vim/plugin/undoskip.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/plugin/undoskip.vim b/vim/plugin/undoskip.vim index 80609433..2f541ebf 100644 --- a/vim/plugin/undoskip.vim +++ b/vim/plugin/undoskip.vim @@ -4,7 +4,7 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('loaded_undoskip') || &compatible || v:version < 700 +if exists('loaded_undoskip') || &compatible || !has('persistent_undo') finish endif let loaded_undoskip = 1 -- cgit v1.2.3 From b162ad6a6a4435fccf5d199922b0934cb40d5ecc Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 3 May 2020 23:49:39 +1200 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 3ae41974..558ffdde 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v8.28.0 -Sun, 03 May 2020 11:44:44 +0000 +tejr dotfiles v8.28.1 +Sun, 03 May 2020 11:49:34 +0000 -- cgit v1.2.3