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 /autoload | |
parent | Merge branch 'hotfix/v1.0.1' (diff) | |
parent | Bump VERSION (diff) | |
download | vim-paste-insert-master.tar.gz vim-paste-insert-master.zip |
* hotfix/v1.0.2:
Prevent errors when mapping is pressed twice
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/paste_insert.vim | 5 |
1 files changed, 5 insertions, 0 deletions
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! |