vote up -3 vote down star

Possible Duplicate:
In vim is there a way to delete without putting text in the register?

I press dd. The deletion overwrites my yield copied before by yy.

How can you restrict the overwriting of the yield in Vim?

flag

closed as exact duplicate by soulmerge, RaYell, lavinio, Brian Carper, John Millikin Aug 17 at 17:51

4 Answers

vote up 3 vote down check

Yank to the black hole register: "_

So you'd be after "_dd

link|flag
vote up -1 vote down

The yield? What's that? Try "add which puts the result of the delete in buffer a. Then "ap. This is old school vi stuff.

link|flag
vote up 1 vote down

Duplicate question

link|flag
vote up 0 vote down
  1. i
  2. [DEL] [DEL] [DEL] ...
  3. [ESC]
link|flag

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