aboutsummaryrefslogtreecommitdiff
path: root/plugin/paste_insert.vim
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/paste_insert.vim')
-rw-r--r--plugin/paste_insert.vim5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugin/paste_insert.vim b/plugin/paste_insert.vim
index a792a50..ecb97ca 100644
--- a/plugin/paste_insert.vim
+++ b/plugin/paste_insert.vim
@@ -12,6 +12,11 @@ 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#()