From 994124f4badc437a7eef6b264458945f01a3eb6a Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 26 May 2019 20:27:22 +1200 Subject: Fix backwards test --- autoload/insert_timeout.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/insert_timeout.vim b/autoload/insert_timeout.vim index 5df8b3d..8ca3e7c 100644 --- a/autoload/insert_timeout.vim +++ b/autoload/insert_timeout.vim @@ -6,7 +6,7 @@ endfunction " Restore update time to its previous value function! insert_timeout#Leave() abort - if exists('s:updatetime') + if !exists('s:updatetime') return endif let &updatetime = s:updatetime -- cgit v1.2.3 From 5ae16ee7084d751d4788979b37276c3805c832f5 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 26 May 2019 20:27:37 +1200 Subject: Bump VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 3eefcb9..7dea76e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.0 +1.0.1 -- cgit v1.2.3