aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/undoskip.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/autoload/undoskip.vim')
-rw-r--r--vim/autoload/undoskip.vim20
1 files changed, 0 insertions, 20 deletions
diff --git a/vim/autoload/undoskip.vim b/vim/autoload/undoskip.vim
deleted file mode 100644
index 8813ff13..00000000
--- a/vim/autoload/undoskip.vim
+++ /dev/null
@@ -1,20 +0,0 @@
-" Internal function returns a local value for 'undofile'
-function! undoskip#Check(path) abort
-
- " If this isn't a normal buffer, don't save undo data
- if &buftype !=# ''
- return 0
- endif
-
- " Get the path from the buffer name; if that path matches any of the
- " patterns, don't save undo data
- for glob in g:undoskip
- if a:path =~# glob2regpat(glob)
- return 0
- endif
- endfor
-
- " Otherwise, we'll use whatever the global setting is
- return &g:undofile
-
-endfunction