vote up 10 vote down star
3

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?

flag

I've always found it irksome that the vim command line doesn't have access to any registers, etc. – inkedmn Sep 25 at 14:40
I agree 100% with that. That would make a huge difference. – j0rd4n Sep 25 at 14:46
4  
@inkedmn: What do you mean it doesn't have access to registers? ctrl-r clearly allows you to access copy/paste registers. – depesz Sep 25 at 15:10
@depesz: I had no idea - you've just made my day – inkedmn Sep 25 at 15:31
1  
@inkedmn: ah :) good to know. Generally - if there is something to make programmer life easier - vim most likely has a way to do it. – depesz Sep 25 at 16:12
show 1 more comment

4 Answers

vote up 14 vote down check

Sure. If you selected the word, just "y"ank it, and then type:

:%s/<ctrl-r>"/something else/g

Where is pressing ctrl key with r key, and " is just " character.

All keypresses:

y:%s/<ctrl-r>"/what to put/g<enter>
link|flag
Wow, cool! Where can I find that trick in the vim documentation? – Manni Sep 25 at 20:33
Not sure. Ctrl-r is pretty well known thing. – depesz Sep 26 at 18:51
@Manni: :h c_CTRL-R – Luc Hermitte Sep 28 at 8:33
vote up 4 vote down

You don't have to yank the word, place your cursor on the word and then:

:%s/<C-r><C-w>/bar/g
link|flag
Sweet! That is another one I was curious about! – j0rd4n Sep 28 at 13:48
vote up 0 vote down

Another way to access register contents from the command line is via @ variables. So if you yank text into the default register, it'll be in a variable called @".

:exe '%s/' . @" . '/stuff/'

Here's a mapping to make this easy to type:

vmap <Leader>s y:exe '%s/' . @" . '//g'<Left><Left><Left>

Now you can highlight something in visual mode, type \s, type your replacement and hit Enter. depesz's version also makes a good mapping (almost exactly as he typed it):

vmap <Leader>s y:%s/<c-r>"//g<Left><Left>
link|flag
vote up 4 vote down

If you searched for your text before you can use

CTRL-R /

to insert the last search item in your search and replace string.

You can check this page for other similar tricks:

http://www.vim.org/htmldoc/insert.html

link|flag

Your Answer

Get an OpenID
or

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