Use `g*` to go to the next word
Another trick I've learned from Vim Un-Alphabet is g*
. You probably use the star command to find instances of a word throughout your file, and when you do that the search looks like this:
/\<word\>
The escaped angle brackets to the left and to the right are word boundaries. You can search for the word under the cursor without the word boundaries with g*
.