Created
December 3, 2019 08:53
-
-
Save rcy/cbd9d4e81025f812b0acf8e8dc1a15f8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun rcirc-reposition-to-bottom (orig-fun &rest args) | |
"Reposition the window to put point at bottom line." | |
(when (and (eq major-mode 'rcirc-mode) | |
(eq (point) (point-max)) | |
(recenter -1)))) | |
(advice-add 'text-scale-adjust :after #'rcirc-reposition-to-bottom) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment