aboutsummaryrefslogtreecommitdiffstats
path: root/plugin/unimpaired_paste.vim
diff options
context:
space:
mode:
authorTeddy Wing2014-06-14 20:32:13 -0400
committerTeddy Wing2014-06-14 20:32:13 -0400
commit5b1d2482f222092ae55ec3ad23f414f5f7a1b3e3 (patch)
treef967e8ff3687f13c328100918c11bd0b21694c96 /plugin/unimpaired_paste.vim
parent7b01a1db66efde6c79df75f1646569f4b9148a4e (diff)
downloaddotvim-5b1d2482f222092ae55ec3ad23f414f5f7a1b3e3.tar.bz2
unimpaired_paste: fix `yi` mapping (change to `yoi`)
Made a mistake. Using `yi` means that commands like `yi(` don't work anymore so change the mapping to `yoi` because I can't think of anything better.
Diffstat (limited to 'plugin/unimpaired_paste.vim')
-rw-r--r--plugin/unimpaired_paste.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/unimpaired_paste.vim b/plugin/unimpaired_paste.vim
index f628fb1..6c7eba5 100644
--- a/plugin/unimpaired_paste.vim
+++ b/plugin/unimpaired_paste.vim
@@ -22,7 +22,7 @@ nnoremap <silent> <Plug>unimpairedPaste :call <SID>setup_paste()<CR>
nnoremap <silent> yo :call <SID>setup_paste()<CR>o
nnoremap <silent> yO :call <SID>setup_paste()<CR>O
-nnoremap <silent> yi :call <SID>setup_paste()<CR>i
+nnoremap <silent> yoi :call <SID>setup_paste()<CR>i
augroup unimpaired_paste
autocmd!