diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2020-06-05 00:04:22 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2020-06-05 00:04:22 +1200 |
commit | 1ffcb96611315dd068b734d5aae7ff07fa2b3a26 (patch) | |
tree | 23a785eae0fb6a216d6c159b295001d6d336aadf | |
parent | Merge branch 'hotfix/v1.0.1' (diff) | |
parent | Bump VERSION (diff) | |
download | vim-paste-insert-1ffcb96611315dd068b734d5aae7ff07fa2b3a26.tar.gz vim-paste-insert-1ffcb96611315dd068b734d5aae7ff07fa2b3a26.zip |
* hotfix/v1.0.2:
Prevent errors when mapping is pressed twice
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | autoload/paste_insert.vim | 5 |
2 files changed, 6 insertions, 1 deletions
@@ -1 +1 @@ -1.0.1 +1.0.2 diff --git a/autoload/paste_insert.vim b/autoload/paste_insert.vim index 49f630f..dc87c98 100644 --- a/autoload/paste_insert.vim +++ b/autoload/paste_insert.vim @@ -1,6 +1,11 @@ " Autoloaded entry point function function! paste_insert#() abort + " Stop and do nothing if already in the middle of a paste + if exists('#paste_insert#User#Start') + return + endif + " Set up an event table augroup paste_insert autocmd! |