Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Wow I was trying to learn about vim from your question (which I did) and found out I could use ; instead of && to separate Unix shell commands too! – ebyrob Apr 2 at 12:07
@ebyrob I feel it's important to note that && is 'boolean and' in shell commands so if you have command1 && command2, command2 will only execute if command1 executed 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

4 Answers

up vote 47 down vote accepted

A bar | will allow you to do this. From :help :bar

'|' can be used to separate commands, so you can give multiple commands in one line. If you want to use '|' in an argument, precede it with '\'.

Example:

:echo "hello" | echo "goodbye"

Output:

hello
goodbye

NB: You may find that your ~/.vimrc doesn't support mapping |, or \|. In these cases, try using <bar> instead.

share|improve this answer
3  
Just watch out for the handful of commands that don't work with |! – too much php Jul 14 '10 at 22:53
9  
When you find yourself wanting to use multiple commands in a map statement (and believe me, you will), check out :help map_bar. – Bill Odom Jul 14 '10 at 23:36
1  
That's true. I asked that very question on superuser a few months ago. My .vimrc doesn't support an escaped bar (\|) for mappings. I learned I have to actually type out <bar>. – michaelmichael Jul 15 '10 at 15:23
Thanks for the working solution! :help bar shows motion.txt though and nothing about multiple commands. – geekQ Sep 13 '12 at 17:52
It's actually :help :bar. :) – bamccaig Mar 17 at 16:12
show 1 more comment

The command seperator in vim is |.

share|improve this answer

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()
share|improve this answer

I've always used ^J -- to enter one: CTRL-V-CTRL-J

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.