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

Most of the time, I use yy to yank and line and then paste with p somewhere. However, if I use dd to delete any line, or dw to delete any word, I will lose anything that I had yanked. Is there a workaround to this problem?

Thanks,

link|improve this question

@Pavel Shved: Thanks. – Chan Apr 30 '11 at 6:55
feedback

closed as exact duplicate by Pavel Shved, Tim Post Apr 30 '11 at 6:59

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 3 down vote accepted

The same question has been answered a few times, I think.

You can map the correct command to eg <leader>d with:

nnoremap <leader>d "_d
link|improve this answer
Thanks a lot. – Chan Apr 30 '11 at 6:54
feedback

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