I have a number of regex substitutions I regularly do, and therefore want to map a key to do this easily. However, if one of the regexes to be substituted aren't found in the file, my key mapping stops due to E486: Pattern not found and no further replacements are carried out. E.g. if the mapping in my vimrc is
map <F12> :%s/spam/foo/<enter>:%s/ham/bar/<enter>:%s/eggs/baz/<enter>
and there is no ham in my file, eggs won't get substituted. Is there a flag I can put on the substitutions to ignore errors? I've read :help regex and :help map without finding anything usable.
Alternately, is there another, easier, more obvious way to do this that I'm missing?
/if you don't append flags likegor theeBirei proposed::%s/spam/foo<CR>Same goes even for the second delimiter if you just want to delete something (only the first occurrence per line)::%s/spam<cr>) – accolade Jan 17 '12 at 0:17