Reputation: 191
As I am testing some programs on the command line and the output is very long, I try to store the output in a file and renew it from time to time. However, the emacs is not checking for renewment. So I need to reopen the file repeatedly.
I wander if there are good modes or settings for doing that.
If not, I wander whether there are good text viewing tools to use to solve my problem.
Thanks a lot ;P
Upvotes: 0
Views: 38
Reputation: 41548
You can use M-x auto-revert-mode
- or M-x auto-revert-tail-mode
, if you're only appending to the file.
Upvotes: 2