views:

863

answers:

2

I have a non-emacs global search and replace function that causes my disk files to become more up-to-date than my emacs buffers (en masse). Is there any way to tell emacs to refresh all the buffers from disk in one fell swoop, instead of having to do each one individually by reloading the file?

Thanks! D

+6  A: 

Well, this is kind of a duplicate of my question, to which the answer was: use revbuffs.

Singletoned
revbuffs works GREAT. Thanks for the heads-up.
Dave
+4  A: 

(global-auto-revert-mode t) in your .emacs

Ashwin
This looks good in cases where I always want to stay synched, thank you! I think I'll end up using revbuffs so that I can manage conflicts myself ( otherwise sometimes I might lose unsaved changes, the way my workflow currently works. )
Dave