I not sure what an ex command box is but to paste the contents of the
clipboard into an ex command (also called the colon command line):
^R+
Note that some applications use the * buffer for the clipboard so the
command becomes:
^R*
--
Just my 0.00000002 million dollars worth,
Shawn
The map is not the territory,
the dossier is not the person,
the model is not reality,
and the universe is indifferent to your beliefs.
as far as I know, there's no command to bring in the visually
selected text *without yanking first*. However, once you have it
yanked into a register, you can do as Shawn suggested with the
control+R followed by the register identifier
:help c_CTRL-R
-tim
Sure. The last search string is saved in the / register, so after
you've typed
:s/
you can then type Ctrl-R followed by / and your search string will
appear after the :s/. See also
:help quote/
Regards,
Gary