I have a buffer. In that buffer exists a string that spans multiple lines:
asdf
qrughatuxlnjtzu
... tens more lines...
I have one instance of this string readily available under my cursor. I want to search for other instances of this multiline string in the same buffer without having to manually copy/edit significant portions of said multiline string into the command buffer (n.b. manually replacing newlines with their regex equivalents is significant editing).
I've tried using How do I search for the selected text? (visual selection -> yank -> command buffer) + Exact string match in vim? (Like 'regex-off' mode in less.) (verbatim search), but the approaches do not appear to work for multiple lines.
How do I perform an exact multiline search of a selected string in Vim?