"|" is a command separator in Vim scripts.
:command the_first | second command
performs two commands.
There is also a normal command that allows you to execute normal mode commands, such as motion commands, from the Ex command line. So maybe you can do something like
:/pat.*$/d | exec "normal 32G5w" | /pat.*$/d
There is probably an easier way to do what you are trying to do, if you can be more specific.
Steve k
source share