I want to do a search and find something that I'm pasting in with a lot of /
characters. I would rather not have to escape every one of them as it is a PITA.
Is there some way of doing this? In perl I'd just use m#blah#
, but the m
prefix doesn't seem to work in vim.
NOTE: I'm not wanting to escape the entire search string, just not use the /
as a match delimiter.