how do I copy/paste in vim ex mode
Solution 1:
You can use Ctrl-R to insert the value of a register on the Ex command line. If you've yanked some text into the default register, for example, you can recall it with Ctrl-R".
There are shortcuts for some common cases, too. You can insert the current word under the cursor with Ctrl-RCtrl-W, or the current filename with Ctrl-RCtrl-F.
See these topics for more information, including several more examples:
:help c_CTRL-R
:help cmdline.txt
Registers are worth reading about, too:
:help registers
Solution 2:
I almost always avoid typing the search string in the substitute command by first executing a search (with /
) or a "word under cursor search" (with *
) and then executing:
:%s//other_string/gc
When the search pattern is missing, the substitute command will use the last search pattern.
Beside making you type less characters, the first case, searching with /
, allow to first test a complex search pattern before executing the substitution. The second case, searching with *
, allow to avoid inserting the start/end atoms, i.e. \<
and \>
.
--
By the way, you can avoid the g
flag by adding the line
set gdefault
in your vimrc
file.