mirror of
https://github.com/vale981/py-vterm-interaction.el
synced 2025-03-05 10:01:41 -05:00
Include more characters at the end of the buffer for checking status
This commit is contained in:
parent
92440ab7a9
commit
9c6a7cd313
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ If there's already one with the process alive, just open it."
|
|||
|
||||
(defun julia-vterm-repl-buffer-status ()
|
||||
(let* ((bs (buffer-string))
|
||||
(tail (substring bs (- (min 64 (length bs))))))
|
||||
(tail (substring bs (- (min 256 (length bs))))))
|
||||
(set-text-properties 0 (length tail) nil tail)
|
||||
(let* ((lines (split-string (string-trim-right tail "[\t\n\r]+")
|
||||
(char-to-string ?\n)))
|
||||
|
|
Loading…
Add table
Reference in a new issue