diff options
author | Teddy Wing | 2014-06-14 20:32:13 -0400 |
---|---|---|
committer | Teddy Wing | 2014-06-14 20:32:13 -0400 |
commit | 5b1d2482f222092ae55ec3ad23f414f5f7a1b3e3 (patch) | |
tree | f967e8ff3687f13c328100918c11bd0b21694c96 /plugin/unimpaired_paste.vim | |
parent | 7b01a1db66efde6c79df75f1646569f4b9148a4e (diff) | |
download | dotvim-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.vim | 2 |
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! |