mirror of
https://github.com/vale981/emacs-jupyter
synced 2025-03-05 07:41:37 -05:00
Fix read-only error when inserting into the *jupyter-repl-output*
buffer
This commit is contained in:
parent
3c34c1f7ed
commit
d7a064cae5
1 changed files with 3 additions and 1 deletions
|
@ -1218,7 +1218,9 @@ buffer to display TEXT."
|
|||
(jupyter-request-last-message req))
|
||||
:comm-msg)
|
||||
(with-current-buffer (get-buffer-create "*jupyter-repl-output*")
|
||||
(jupyter-repl-insert-ansi-coded-text text)))
|
||||
(let ((inhibit-read-only t))
|
||||
(jupyter-repl-insert-ansi-coded-text text)
|
||||
(display-buffer (current-buffer)))))
|
||||
(t
|
||||
(jupyter-repl-do-at-request client req
|
||||
(jupyter-repl-insert-ansi-coded-text text))))))
|
||||
|
|
Loading…
Add table
Reference in a new issue