Search for an exact word in Vim command mode
Use regular expressions:
/\<your_exact_word\>
In other words, enclose your search string between \<
and \>
Use regular expressions:
/\<your_exact_word\>
In other words, enclose your search string between \<
and \>