I\'ve been trying to find something that will let me run multiple commands on the same line in Vim, akin to using semicolons to separate commands in *nix systems or &a
&a
Thought this might help someone trying to do substitutions in a chain and one fails
from a comment
% s/word/newword/ge | % s/word2/newword2/ge
You can use the e flag to ignore the error when the string is not found.
e