From 891eeb9ac4756dbbb80038343d44845ca4f6e9b8 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 3 May 2020 23:59:14 +1200 Subject: Use global variable not autoload for undoskip.vim Just to be consistent with my other plugins. --- vim/plugin/undoskip.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vim/plugin/undoskip.vim b/vim/plugin/undoskip.vim index 2f541ebf..ffbabf86 100644 --- a/vim/plugin/undoskip.vim +++ b/vim/plugin/undoskip.vim @@ -10,7 +10,7 @@ endif let loaded_undoskip = 1 " Set the paths to test; can be changed by the user -let undoskip#patterns = ['^/dev/shm/.', '^/tmp/.', '^/var/tmp/.'] +let g:undoskip_patterns = ['^/dev/shm/.', '^/tmp/.', '^/var/tmp/.'] " Internal function returns a local value for 'undofile' function s:CheckUndoSkip() abort @@ -23,7 +23,7 @@ function s:CheckUndoSkip() abort " Get the path from the buffer name; if that path matches any of the " patterns, don't save undo data let path = bufname('%') - for pattern in g:undoskip#patterns + for pattern in g:undoskip_patterns if path =~# pattern return 0 endif -- cgit v1.2.3 From a85b52f148cab991909a934668bcb874402c0f8f Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 3 May 2020 23:59:43 +1200 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 558ffdde..d3b7b1d9 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v8.28.1 -Sun, 03 May 2020 11:49:34 +0000 +tejr dotfiles v8.28.2 +Sun, 03 May 2020 11:59:39 +0000 -- cgit v1.2.3