vote up 14 vote down star
4

I'm using VIM, and I want to substitute some placeholder text with a long string, that spans several lines, which is already written somewhere else in the file.

Is it possible to replace a pattern with the contents of a register? Something like

:%s/foo/<contents of register A>

Otherwise, is it possible to replace with a range of lines? something like

:%s/foo/<content of lines from 10 to 15>
flag

2 Answers

vote up 19 vote down check

According to http://vim.wikia.com/wiki/Search_and_replace It appears:

:%s/foo/\=@a/g

Also, pressing <c-r>a will insert the contents of register a.

Cool -- I never knew that. Good question.

Some other things to do with <c-r>: http://www.vim.org/htmldoc/cmdline.html#c_CTRL-R

link|flag
I'm impressed, you answered in less than one minute... Thanks! – orsogufo Mar 19 at 15:52
I have always wanted to put things into commands that came from the system clipboard nice work. – ojblass Mar 23 at 22:09
vote up 9 vote down
:%s/foo/\=getline(10, 15)/g

:%s/foo/\=join(getline(10, 15))/g
link|flag
I think that's the opposite of what he's looking for... I think he wants something like :s/foo/10,15/ – David Wolever Mar 19 at 15:55
Maybe I didn't express myself clearly, but what I wanted to achieve was replacing 'foo' with the contents of lines from 10 to 15, and not limit the replacement to lines 10-15. Thanks for answering, anyway :) – orsogufo Mar 19 at 15:56
I changed. Does this fit? – Mykola Golubyev Mar 19 at 15:58
Ah, cool -- yea, that looks like it'd do it. – David Wolever Mar 19 at 15:59
Works perfectly, I'm just sorry I cannot accept more than one answer. Thanks! – orsogufo Mar 19 at 16:01

Your Answer

Get an OpenID
or

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