up vote 3 down vote favorite
1
share [g+] share [fb]
  1. I use Vim & Git together.
  2. I tend to merge/switch Git branches alot.
  3. I tend to have lots of vim buffers open.

  4. Is there a way to tell vim: when I execute this git command (which switches branches), reload all buffers? Since I have hooks into all my vim-git interaction, letting vim know when to do the reload is not a problem. The question is: how to force vim to reload all buffers?

link|improve this question

80% accept rate
2  
If I may ask, how do you have vim and git tied together so closely? – Brian Riehman Mar 23 '10 at 2:44
The vim-fugitive plugin provides something like that. – Axel Oct 6 '11 at 14:21
feedback

1 Answer

up vote 8 down vote accepted

You can try setting the autoread option on.

:set autoread

From the vim help:

When a file has been detected to have been changed outside of Vim and it has not been changed inside of Vim, automatically read it again.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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