tags:

views:

75

answers:

1

I don't like automatic copy the deleted text when delete in Vim, how to disable it?

+5  A: 

Not sure there is a way to disable it, but there is a black hole register called '_', which swallows everything, and gives nothing back.

You use it by prepending "_ to the command, so "_dd would send the current line to the blackhole.

WishCow