mirror of
https://github.com/vale981/emacs-jupyter
synced 2025-03-05 07:41:37 -05:00
Fix missing parentheses
This commit is contained in:
parent
c2e4c80df6
commit
a0f654ee8a
1 changed files with 6 additions and 6 deletions
|
@ -831,12 +831,12 @@ lines then truncate it to something less than
|
|||
do (pcase (plist-get pl :source)
|
||||
("page"
|
||||
(let ((text (plist-get (plist-get pl :data) :text/plain))
|
||||
(line (or (plist-get pl :start) 0))))
|
||||
(with-jupyter-repl-doc-buffer "pager"
|
||||
(jupyter-repl-insert-ansi-coded-text text)
|
||||
(goto-char (point-min))
|
||||
(forward-line line)
|
||||
(display-buffer (current-buffer))))
|
||||
(line (or (plist-get pl :start) 0)))
|
||||
(with-jupyter-repl-doc-buffer "pager"
|
||||
(jupyter-repl-insert-ansi-coded-text text)
|
||||
(goto-char (point-min))
|
||||
(forward-line line)
|
||||
(display-buffer (current-buffer)))))
|
||||
((or "edit" "edit_magic")
|
||||
(with-current-buffer (find-file-other-window
|
||||
(plist-get pl :filename))
|
||||
|
|
Loading…
Add table
Reference in a new issue