Exact string match in vim? (Like ‘regex-off’ mode in less.)
Depending on the exact string you’re searching, the \V prefix will probably do the trick. See :help \V: after: \v \m \M \V matches ~ ‘magic’ ‘nomagic’ $ $ $ \$ matches end-of-line . . \. \. matches any character * * \* \* any number of the previous atom () \(\) \(\) \(\) grouping … Read more