From c2c5b2f1901f801a6aef909e63d8ea49d76e4f15 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 12 Jul 2018 11:36:26 +1200 Subject: Actually remove autoload --- autoload/insert_timeout.vim | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 autoload/insert_timeout.vim diff --git a/autoload/insert_timeout.vim b/autoload/insert_timeout.vim deleted file mode 100644 index c3da2e6..0000000 --- a/autoload/insert_timeout.vim +++ /dev/null @@ -1,15 +0,0 @@ -" Set update time to configured variable or default 10 seconds -function! insert_timeout#SetUpdatetime() abort - let g:insert_timeout#updatetime_save = &updatetime - let &updatetime = exists('g:insert_timeout_duration') - \ ? g:insert_timeout_duration - \ : 10000 -endfunction - -" Restore update time to globally configured variable -function! insert_timeout#RestoreUpdatetime() abort - if exists('g:insert_timeout#updatetime_save') - let &updatetime = g:insert_timeout#updatetime_save - unlet g:insert_timeout#updatetime_save - endif -endfunction -- cgit v1.2.3 From 30de4f2a79f04a582d59c9b4c2312f1a22c10561 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 12 Jul 2018 11:36:34 +1200 Subject: Bump VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 0ea3a94..0c62199 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2.0 +0.2.1 -- cgit v1.2.3