Search for an exact word in Vim command mode

Solution 1:

Use regular expressions:

/\<your_exact_word\>

In other words, enclose your search string between \< and \>