aboutsummaryrefslogtreecommitdiff
path: root/autoload/paste_insert.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-06-05 00:04:22 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-06-05 00:04:22 +1200
commit1ffcb96611315dd068b734d5aae7ff07fa2b3a26 (patch)
tree23a785eae0fb6a216d6c159b295001d6d336aadf /autoload/paste_insert.vim
parentMerge branch 'hotfix/v1.0.1' (diff)
parentBump VERSION (diff)
downloadvim-paste-insert-master.tar.gz
vim-paste-insert-master.zip
Merge branch 'hotfix/v1.0.2'HEADv1.0.2master
* hotfix/v1.0.2: Prevent errors when mapping is pressed twice
Diffstat (limited to 'autoload/paste_insert.vim')
-rw-r--r--autoload/paste_insert.vim5
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!