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
You could define a function that executes your commands.
function Func() :command :command2 endfunction
And place this in, for example, your vimrc. Run the function with
exec Func()