Skip to content

Instantly share code, notes, and snippets.

@rcy
Created December 3, 2019 08:53
Show Gist options
  • Save rcy/cbd9d4e81025f812b0acf8e8dc1a15f8 to your computer and use it in GitHub Desktop.
Save rcy/cbd9d4e81025f812b0acf8e8dc1a15f8 to your computer and use it in GitHub Desktop.
(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