How do you search for a literal string without regex interpretation?
/\Vexact.string
Prefix with \V for very nomagic mode where almost all characters are treated literally.
/\Vexact.string
Prefix with \V for very nomagic mode where almost all characters are treated literally.