Does anyone know of a way that I can paste over a visually selected area without having the selection placed in the default register?

I know I can solve the problem by always pasting from an expicit register. But it's a pain in the neck to type "xp instead of just p

Thanks

link|improve this question
feedback

7 Answers

up vote 9 down vote accepted

"{register}p won't work as you describe. It will replace the selection with the content of the register. You will have instead to do something like:

" I haven't found how to hide this function (yet)
function! RestoreRegister()
  let @" = s:restore_reg
  return ''
endfunction

function! s:Repl()
    let s:restore_reg = @"
    return "p@=RestoreRegister()\<cr>"
endfunction

" NB: this supports "rp that replaces the selection by the contents of @r
vnoremap <silent> <expr> p <sid>Repl()

Which should be fine as long as you don't use a plugin that has a non-nore vmap to p, and that expects a register to be overwritten.

This code is available as a script there. Ingo Karkat also defined a plugin solving the same issue.

link|improve this answer
Thanks! That did the trick. I guess I'd better learn to script vim sometime. :) – Starr Horne Nov 14 '08 at 17:18
Actually, I though there was a neat way to fetch the register used, but couldn't remember how. Hence the complexity of the function. – Luc Hermitte Nov 14 '08 at 17:23
1  
I think that this is overkill, won't remember the regtype (linewise?) and that remapping p to pgvy is sufficient. – Benoit Feb 23 '11 at 15:59
It may be overkill, but it has no side effect. On a "xp, this does not overwrite @" contents with @x unlike pgvy – Luc Hermitte Feb 24 '11 at 16:43
1  
then what about :xnoremap p pgv@=v:register.'y'<cr> ? – Benoit Feb 24 '11 at 17:42
show 3 more comments
feedback

I don't like the default vim behavior of copying all text deleted with d, D, c, or C into the default register.

I've gotten around it by mapping d to "_d, c to "_c, and so on.

From my .vimrc:

"These are to cancel the default behavior of d, D, c, C
"  to put the text they delete in the default register.
"  Note that this means e.g. "ad won't copy the text into
"  register a anymore.  You have to explicitly yank it.
nnoremap d "_d
vnoremap d "_d
nnoremap D "_D
vnoremap D "_D
nnoremap c "_c
vnoremap c "_c
nnoremap C "_C
vnoremap C "_C
link|improve this answer
feedback

Luc's function worked well for me after I made a change to support the fact that I have clipboard=unnamed set:

function! RestoreRegister()
    let @" = s:restore_reg
    if &clipboard == "unnamed"
        let @* = s:restore_reg
    endif
    return ''
endfunction
link|improve this answer
feedback

Luc Hermitte's did the trick! Really good. Here's his solution put in a toggle function, so you can switch between normal behavior and no-replace-register put.

the command ,u toggles the behavior

let s:putSwap = 1 
function TogglePutSwap()
    if s:putSwap
        vnoremap <silent> <expr> p <sid>Repl()
        let s:putSwap = 0 
        echo 'noreplace put'
    else
        vnoremap <silent> <expr> p p 
        let s:putSwap = 1 
        echo 'replace put'
    endif
    return
endfunction
noremap ,p :call TogglePutSwap()<cr>
link|improve this answer
You can also change s:Repl to return "p" instead of "p@=RestoreRegister()\<cr>" depending on s:putSwap value. – Luc Hermitte Oct 7 '09 at 10:10
1  
prefer silent! vunmap instead of vnoremap <silent> <expr> p p – Luc Hermitte Feb 24 '11 at 16:46
This worked perfectly for me with Luc's suggestion. – leo Dec 4 '11 at 21:08
feedback

Use the following:

xnoremap p pgvy

this will reselect and re-yank any text that is pasted in visual mode.

Edit: in order this to work with "xp you can do:

xnoremap p pgv"@=v:register.'y'<cr>

v:register expands to the last register name used in a normal mode command.

link|improve this answer
On a "xp, this approach overwrites @" with @x. – Luc Hermitte Feb 24 '11 at 16:44
feedback

off-topic: did you write this comment? http://ifacethoughts.net/2008/05/11/task-management-using-vim/#comment-245152

would be interessted in your vim snippset, yaml approach ;)

Just leave me a message in this thread here.

cheers -- jerik

link|improve this answer
feedback

try -

:set guioptions-=a
:set guioptions-=A
link|improve this answer
Those control whether selected text is added to the windowing system's clipboard (e.g., X11 or Win32), not to Vim's internal copy registers. – Rob Kennedy Nov 14 '08 at 16:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.