When writing non-code with vim, I often have the need to search for multiple words that might be separated by a newline instead of a space.
For example, I may want to search for occurrences of "white house", but some occurrences may have a newline between "white" and "house".
I am aware that such multiline search is possible with "\_s" (e.g., "white\_shouse") but it is cumbersome. I would like to replace the search command such that spaces are treated as "\_s" without me having to type them out.
Is it possible to "remap" the / search command?