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
Once you have a visual selection, you can use o to toggle the cursor position between the start and end of the selected block. When the selection is line-wise this toggles the line position, meaning the cursor moves to the starting and ending line of the selection but not to the starting or ending character. When the selection is character-wise then the movement is also character-wise.
You can also use `< and `> to toggle the cursor between the start and end of the visual block, however this affects the selection itself, so it is used to reset or adjust the selection bounds.
Edit: Ah, but for search highlights this won't work, because o will initiate a line insertion. I guess search highlight isn't the same as a visual selection, sorry :)