Using / or ? enables to find a match for a word in vim. But how can I find an exact match? For example, my text contains the following words: a a
/
?
a a
You enclose the string you are looking for by \< and \> like in /\ to match exactly that string.
\<
\>
/\