diff --git a/README.md b/README.md index a0bc43e..6a551e8 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,7 @@ smart people at [Hashrocket](http://hashrocket.com/). ### vim +- [The Black Hole Register](vim/the-black-hole-register.md) - [Buffer Time Travel](vim/buffer-time-travel.md) - [Close the Current Buffer](vim/close-the-current-buffer.md) - [Count the Number of Matches](vim/count-the-number-of-matches.md) diff --git a/vim/the-black-hole-register.md b/vim/the-black-hole-register.md new file mode 100644 index 0000000..52bdf8a --- /dev/null +++ b/vim/the-black-hole-register.md @@ -0,0 +1,19 @@ +# The Black Hole Register + +Vim has a variety of registers for storing and moving around text. Vim also +has a special register called the *black hole register*. + +> When writing to this register, nothing happens. This can be used to delete +> text without affecting the normal registers. When reading from this register, +> nothing is returned. + +As stated in the docs, if you don't want to overwrite the unnamed register or +some other register when deleting text, you can use the black hole register. +For instance, to deleting the current line without any register side-effects +looks like this: + +``` +"_dd +``` + +See `:h registers` for more info on Vim's registers.