aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin/paste_insert.vim
blob: 2c17f8025229da04b6a241d02e9d162b112df2bb (plain) (blame)
1
2
3
4
5
6
7
8
if exists('loaded_paste_insert') || &compatible
  finish
endif
let loaded_paste_insert = 1
command! -bar PasteInsert
      \ call paste_insert#()
nnoremap <Plug>PasteInsert
      \ :<C-U>PasteInsert<CR>