aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-23 01:19:45 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-23 01:24:14 +1200
commit16ae605f844121dd4192297db8cab0528d1af055 (patch)
treeb504463dce35e32d3afcd7d45f408a1a9638fbe6 /plugin
parentFlesh out documentation a lot (diff)
downloadvim-paste-insert-16ae605f844121dd4192297db8cab0528d1af055.tar.gz
vim-paste-insert-16ae605f844121dd4192297db8cab0528d1af055.zip
Revert "Clear event table only once so user can...
The group clears itself by design once it's done, so they can't use it anyway.
Diffstat (limited to 'plugin')
-rw-r--r--plugin/paste_insert.vim5
1 files changed, 0 insertions, 5 deletions
diff --git a/plugin/paste_insert.vim b/plugin/paste_insert.vim
index ecb97ca..a792a50 100644
--- a/plugin/paste_insert.vim
+++ b/plugin/paste_insert.vim
@@ -12,11 +12,6 @@ if exists('loaded_paste_insert') || &compatible
endif
let loaded_paste_insert = 1
-" Create the augroup here, so that the user can hook into it if they need to
-augroup paste_insert
- autocmd!
-augroup END
-
" Command interface
command! -bar PasteInsert
\ call paste_insert#()