When I perform a search and replace in Vim, I like to use the search function (/regex) first to visually test my regex.
Is there a simple way to bring up the expression I wrote in a search and replace command without typing it again?
For example, if I wanted to find the word perform and replace it with execute in the above text, after doing:
/performenter
is there a way to easily insert perform into the search and replace command below?
:%s/perform/execute/g