I only know of one instance using registers is via CtrlR* whereby I paste text from a clipboard.
What are other uses of registers? How to use them?
Everything you know about VI registers (let's focus on vi 7.2) -- share with us.
|
I only know of one instance using registers is via CtrlR* whereby I paste text from a clipboard. What are other uses of registers? How to use them? Everything you know about VI registers (let's focus on vi 7.2) -- share with us. |
|||||||||||||||
|
|
Registers in Vim let you run actions or commands on text stored within them. To access a register, you type
Or you can append to a register by using a capital letter
You can then move through the document and paste it elsewhere using
To access all currently defined registers type
|
|||||||||||||
|
|
I was pleased when I discovered the I find this useful when I want to copy some text, delete something and replace it with the copied text. The following steps illustrate an example:
On the final step, if you were to paste from the default register (with For more info see |
|||||||||||||||||||||
|
|
One of my favorite parts about registers is using them as macros! Let's say you are dealing with a tab-delimited value file as such:
Now you decide that you need to add a percentage sign at the end of the %Dev field. We'll make a simple macro in the (arbitrarily selected)
We can now just type At this point you should be saying, "BUT WAIT, WHAT THE HECK DOES THIS HAVE TO DO WITH REGISTERS?" Excellent point. Let's investigate what is in the contents of the
At first this looks like you accidentally opened a binary file in notepad, but upon second glance, it's the exact sequence of characters in our macro! You are a curious person, so let's do something interesting and edit this line of text to insert a "!" instead of boring old "%".
Then let's yank this into the OMG, IT ADDED A "!" Essentially, running a macro is like pressing the exact sequence of keys in that macro's register. If that isn't a cool register trick, I'll eat my hat. |
|||||||||||||||||||||
|
|
Other useful registers: "* or "+ - the contents of the system clipboard "/ - last search command ": - last command. Note with vim macros, you can edit them, since they are just a list of the keystrokes used when recording the macro. So you can write to a text file the macro (using "ap to write macro a) and edit them, and load them into a register with "ay$. Nice way of storing useful macros. |
|||||||||||||||
|
|
The black hole register I use it in my vimrc to allow deleting single characters without updating the default register:
and to paste in visual mode without updating the default register:
|
|||||||||||||||||||||
|
|
I think the secret guru register is the expression = register. It can be used for creative macro mappings.
You can use it in conjunction with your system as above or get responses from custom VimL functions etc. or just ad hoc stuff like
|
|||||||
|
|
If you ever want to paste the contents of the register in an ex-mode command, hit Why would you use this? I wanted to do a search and replace for a longish string, so I selected it in visual mode, started typing out the search/replace expression If you only want to paste a single word in ex mode, can make sure the cursor is on it before entering ex mode, and then hit |
|||||
|
|
|||||
|
|
A cool trick is to use You can use this to reverse-order a handful of lines:
|
||||
|
|
|
From vim's help page:
|
||||
|
|
|
I use the default register to grep for text in my vim window without having to reach for the mouse.
|
||||
|
|
|
A big source of confusion is the default register
So the default register is actually a pointer to the last used register. When you delete, or yank something this register is going to point to other registers. You can test that by checking the registers. There is always another register that is exactly the same as the default register: the yank register ( The only exception is the black hole register. Vim doc says:
Usually you are much better off by using directly: |
||||
|
|