6 ms·
Handy if you're viewing a live log file and want to see what's been appended since the last time you've opened it: (defun force-revert-buffer () (interactive
by joecomotion 16y ago
Handy if you're viewing a live log file and want to see
what's been appended since the last time you've opened
it:
(defun force-revert-buffer ()
(interactive)
(revert-buffer t t))
(define-key global-map "\C-cr" 'force-revert-buffer)