I am trying to do something really simple in an Ex one-liner: Wrap a HTML line in a PHP echo statement.
<p>Greetings</p>
*run command*
echo "<p>Greetings</p>";
This should be quite simple, given there exists a placeholder to work on the current line only.
I made it work using this command
:s/\v(.*)/echo "\1";/g
However, this makes Vim search for and consequently highlight everything that matches .* (= anything). The entire file is thus highlighted and I have to manually clear the last search or search for some rubbish to clear it.
So to summarize: Is there any existing placeholder or way to refer to the current line during an Ex command?
You can stop the highlighting with
:nohlsearch
:That will still clobber the last search pattern; for full neutralization, use:
Alternatively, you can switch to lower-level functions, to avoid the matching:
PS: You can simplify your search pattern; there's no need to explicitly capture something; have a look at the many other answers for how to simplify it.