aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-26 20:28:13 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-26 20:28:13 +1200
commitb1a4229cf21f8fec4f127529e1a7094d627dd4ec (patch)
tree56f7a658da3311d84ec40fd6be93f3c3571d1712
parentMerge branch 'release/v1.0.0' into develop (diff)
parentBump VERSION (diff)
downloadvim-insert-timeout-b1a4229cf21f8fec4f127529e1a7094d627dd4ec.tar.gz
vim-insert-timeout-b1a4229cf21f8fec4f127529e1a7094d627dd4ec.zip
Merge branch 'hotfix/v1.0.1' into develop
* hotfix/v1.0.1: Fix backwards test
-rw-r--r--VERSION2
-rw-r--r--autoload/insert_timeout.vim2
2 files changed, 2 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index 3eefcb9..7dea76e 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.0.0
+1.0.1
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