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.vim13
1 files changed, 13 insertions, 0 deletions
diff --git a/plugin/paste_insert.vim b/plugin/paste_insert.vim
index 2c17f80..a792a50 100644
--- a/plugin/paste_insert.vim
+++ b/plugin/paste_insert.vim
@@ -1,8 +1,21 @@
+"
+" This small plugin provides a simple "one shot paste" method, with a command
+" or mapping to prefix opening an insert, with the 'paste' option
+" automatically set after the insert ends, to avoid the annoyances caused by
+" forgetting to do so.
+"
+" Author: Tom Ryder <tom@sanctum.geek.nz>
+" License: Same as Vim itself
+"
if exists('loaded_paste_insert') || &compatible
finish
endif
let loaded_paste_insert = 1
+
+" Command interface
command! -bar PasteInsert
\ call paste_insert#()
+
+" Normal mode mapping interface
nnoremap <Plug>PasteInsert
\ :<C-U>PasteInsert<CR>