From 1a1cda3455a91b926762fbb7d33b2f6e3d5da3eb Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 6 May 2020 21:00:33 +1200 Subject: Give correct extension to documentation --- doc/undoskip.txt | 42 ++++++++++++++++++++++++++++++++++++++++++ doc/undoskip.vim | 42 ------------------------------------------ 2 files changed, 42 insertions(+), 42 deletions(-) create mode 100644 doc/undoskip.txt delete mode 100644 doc/undoskip.vim diff --git a/doc/undoskip.txt b/doc/undoskip.txt new file mode 100644 index 0000000..c0dbbe5 --- /dev/null +++ b/doc/undoskip.txt @@ -0,0 +1,42 @@ +*undoskip.txt* For Vim version 8.0 Last change: 2020 May 5 + +DESCRIPTION *undoskip* + +This plugin emulates the `'backupskip'` option's functionality for the +|+persistent_undo| feature, checking buffer file paths against a list of +globs, and switching the `'undofile'` option off locally if any of them match. + +REQUIREMENTS *undoskip-requirements* + +This plugin only loads if 'compatible' is not set. If requires both the +|+persistent_undo| feature and the |glob2regpat()| function. The earliest +full release of Vim with both of these was v8.0. + +OPTIONS *undoskip-options* + + *g:undoskip* +Set `g:undoskip` to a list of globs to match against file buffer paths and +switch 'undofile' on or off accordingly. Defaults to the same values as +'backupskip' (or tries to). + +Some possibly useful values: +> + let g:undoskip = [ + \ '/tmp/*', + \ '/dev/shm/*', + \ '/usr/tmp/*', + \ '/var/tmp/*', + \ '*.git/*_EDITMSG', + \ '*.git/ADD_EDIT.patch', + \ '*.git/rebase-merge/git-rebase-todo', + \] +< +AUTHOR *undoskip-author* + +Written and maintained by Tom Ryder . + +LICENSE *undoskip-license* + +Licensed for distribution under the same terms as Vim itself (see |license|). + + vim:tw=78:ts=8:ft=help:norl: diff --git a/doc/undoskip.vim b/doc/undoskip.vim deleted file mode 100644 index c0dbbe5..0000000 --- a/doc/undoskip.vim +++ /dev/null @@ -1,42 +0,0 @@ -*undoskip.txt* For Vim version 8.0 Last change: 2020 May 5 - -DESCRIPTION *undoskip* - -This plugin emulates the `'backupskip'` option's functionality for the -|+persistent_undo| feature, checking buffer file paths against a list of -globs, and switching the `'undofile'` option off locally if any of them match. - -REQUIREMENTS *undoskip-requirements* - -This plugin only loads if 'compatible' is not set. If requires both the -|+persistent_undo| feature and the |glob2regpat()| function. The earliest -full release of Vim with both of these was v8.0. - -OPTIONS *undoskip-options* - - *g:undoskip* -Set `g:undoskip` to a list of globs to match against file buffer paths and -switch 'undofile' on or off accordingly. Defaults to the same values as -'backupskip' (or tries to). - -Some possibly useful values: -> - let g:undoskip = [ - \ '/tmp/*', - \ '/dev/shm/*', - \ '/usr/tmp/*', - \ '/var/tmp/*', - \ '*.git/*_EDITMSG', - \ '*.git/ADD_EDIT.patch', - \ '*.git/rebase-merge/git-rebase-todo', - \] -< -AUTHOR *undoskip-author* - -Written and maintained by Tom Ryder . - -LICENSE *undoskip-license* - -Licensed for distribution under the same terms as Vim itself (see |license|). - - vim:tw=78:ts=8:ft=help:norl: -- cgit v1.2.3 From 0874186a6e1d8afe6b367c934fa0ad5303416421 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 6 May 2020 21:00:55 +1200 Subject: Bump VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 6e8bf73..17e51c3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0 +0.1.1 -- cgit v1.2.3