How do I search non-greedily across multiple lines between two markers?
/\vstart\_.{-}end
Multiline searches in Vim often overmatch because .
/\vstart\_.{-}end
Multiline searches in Vim often overmatch because .
\_.{-}
The \ modifier in Vim extends any character class or atom to also match newlines.
\_.
In Vim's regular expressions, .
/pattern\_s\+next
Vim's regular expressions support multi-line matching through underscore-prefixed atoms.
/foo\_.*bar
Vim's default .