aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-05-03 23:51:07 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-05-03 23:51:07 +1200
commit6fac47d47bfd17d54530da27fa100410aec2dabc (patch)
tree842190c5758fb2a53eab746339c1f4379ab7e6e1 /vim
parentMerge branch 'release/v8.28.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-6fac47d47bfd17d54530da27fa100410aec2dabc.tar.gz
dotfiles-6fac47d47bfd17d54530da27fa100410aec2dabc.zip
Merge branch 'hotfix/v8.28.1'v8.28.1
* hotfix/v8.28.1: Test for correct feature for undoskip.vim plugin
Diffstat (limited to 'vim')
-rw-r--r--vim/plugin/undoskip.vim2
1 files changed, 1 insertions, 1 deletions
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 <tom@sanctum.geek.nz>
" 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