Are there any commands in Vim/Vi to move within a selected search segment?
For instance, if I search for a word, are there any commands to motion the cursor to the
You can do it with this:
/Fish/e
The /e at the end lands your cursor at the end of the search region (instead of the first character by default.
/e