Let's say I have a word selected in visual mode. I would like to perform a substitution on that word and all other instances of that word in a file by using s//. Is there a way to use the highlighted text in the s/<here>/stuff/ part without having to retype it?
|
3
|
|
||||||||||||||
|
|
|
Sure. If you selected the word, just "y"ank it, and then type:
Where is pressing ctrl key with r key, and " is just " character. All keypresses:
|
||||||
|
|
|
You don't have to yank the word, place your cursor on the word and then:
|
||
|
|
|
Another way to access register contents from the command line is via
Here's a mapping to make this easy to type:
Now you can highlight something in visual mode, type
|
||
|
|
|
|
If you searched for your text before you can use
to insert the last search item in your search and replace string. You can check this page for other similar tricks: |
||
|
|
