X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=lurk.git;a=blobdiff_plain;f=lurk.el;fp=lurk.el;h=89670946b443e4787dc9bdedd7e121a0de2f9d15;hp=f030555415e7ac50bb3657ca00417fddd0bbcec9;hb=d2507cb2725f6b4fb367fc48c99950ea00fb9ee7;hpb=1f57d5c028e295e732927c268de80daf2f8f0cae diff --git a/lurk.el b/lurk.el index f030555..8967094 100644 --- a/lurk.el +++ b/lurk.el @@ -446,8 +446,14 @@ portion of the source component of the message, as LURK doesn't use this.") (fill-region (point-min) (point-max) nil t) (buffer-string)))) +(defun lurk--start-of-final-line () + (with-current-buffer "*lurk*" + (save-excursion + (goto-char (point-max)) + (line-beginning-position)))) + (defun lurk-display-string (context prefix &rest strings) - (with-current-buffer (get-buffer-create "*lurk*") + (with-current-buffer "*lurk*" (save-excursion (goto-char lurk-prompt-marker) (let* ((inhibit-read-only t) @@ -474,7 +480,11 @@ portion of the source component of the message, as LURK doesn't use this.") 'face (lurk-get-context-facelist context) 'read-only t 'context context - 'invisible context-atom)))))))) + 'invisible context-atom)))))) + (dolist (window (get-buffer-window-list)) + (if (>= (window-point window) (lurk--start-of-final-line)) + (with-selected-window window + (recenter -1)))))) (defun lurk-display-message (from to text) (let ((context (if (eq 'channel (lurk-get-context-type to))