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 & in windows. Is there a way to do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
A bar
Example:
Output:
NB: You may find that your |
|||||||||||||||||
|
|
You could define a function that executes your commands.
And place this in, for example, your vimrc. Run the function with
|
|||
|
|
;instead of&&to separate Unix shell commands too! – ebyrob Apr 2 at 12:07&&is 'boolean and' in shell commands so if you havecommand1 && command2,command2will only execute ifcommand1executed successfully. with;you're just manually specifying the end of that line and starting a new one. It's the same as writing each command on a different line in a shell script. – w.p Apr 16 at 20:24