我使用Vim,我想用一个长字符串替换一些占位符文本,跨越几行,这已经写在文件中的其他地方。
是否可以用寄存器的内容替换模式?就像是
:%s/foo/<contents of register A>
否则,是否可以替换为一个范围的行?就像是
:%s/foo/<content of lines from 10 to 15>
根据
http://vim.wikia.com/wiki/Search_and_replace
它出现:
它出现:
:%s/foo/\=@a/g
此外,按< c-r> a将插入寄存器a的内容。
酷 – 我从来不知道。好问题。
与< c-r> ;:http://vimdoc.sourceforge.net/htmldoc/cmdline.html#c_CTRL-R有关的其他一些事情