how strictly does vim search and vim substitute follow regex? For example, this is a whole word search in regex:
\bwordtofind\b
but in vim normal mode, this command does NOT work:
/\bwordtofind\b
but some regex commands do work, for example, non-word barrier escape '\W' does work, ie:
/\Wwordwithnonwordcharssurroundingit/W
Why the inconsistency? Help me understand the logic behind vim search and vim substitute.