aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-14 22:20:05 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-14 22:20:05 +1200
commitc11c409c60603e6735833a2a57cf90c6e83567e6 (patch)
tree8e36a3e8de08c09842c408f91f07a07fa7b1300a /vim/plugin
parentMove autocmd definitions out of augroup block (diff)
downloaddotfiles-c11c409c60603e6735833a2a57cf90c6e83567e6.tar.gz
dotfiles-c11c409c60603e6735833a2a57cf90c6e83567e6.zip
Replace and refactor Vim paste plugins
Diffstat (limited to 'vim/plugin')
-rw-r--r--vim/plugin/paste_insert.vim6
1 files changed, 6 insertions, 0 deletions
diff --git a/vim/plugin/paste_insert.vim b/vim/plugin/paste_insert.vim
new file mode 100644
index 00000000..be578746
--- /dev/null
+++ b/vim/plugin/paste_insert.vim
@@ -0,0 +1,6 @@
+if exists('loaded_paste_insert')
+ finish
+endif
+let loaded_paste_insert = 1
+command! -bar PasteInsert
+ \ call paste_insert#()