vimtricks.wiki Concise Vim tricks, one at a time.

How do you search for a literal string without regex interpretation?

Answer

/\Vexact.string

Explanation

Prefix with \V for very nomagic mode where almost all characters are treated literally. /\V[test] searches for literal [test].

Next

How do I visually select a double-quoted string including the quotes themselves?