feat(emacs/lean-server): scroll debug buffer
This commit is contained in:
parent
02d72e4c40
commit
e77966932d
1 changed files with 6 additions and 3 deletions
|
@ -47,9 +47,12 @@
|
|||
(when lean-server-debug-mode
|
||||
(with-current-buffer
|
||||
(get-buffer-create lean-server-debug-buffer-name)
|
||||
(save-selected-window
|
||||
(ignore-errors
|
||||
(select-window (get-buffer-window lean-server-debug-buffer-name t)))
|
||||
(goto-char (point-max))
|
||||
(insert (format-time-string "%H:%M:%S:%3N -- " (current-time)))
|
||||
(insert (apply 'format (concat format-string "\n") args)))))
|
||||
(insert (apply 'format (concat format-string "\n") args))))))
|
||||
|
||||
;; How to read data from an async process
|
||||
;; ======================================
|
||||
|
|
Loading…
Reference in a new issue