mirror of
https://github.com/vale981/emacs-jupyter
synced 2025-03-05 23:41:38 -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)
|
do (pcase (plist-get pl :source)
|
||||||
("page"
|
("page"
|
||||||
(let ((text (plist-get (plist-get pl :data) :text/plain))
|
(let ((text (plist-get (plist-get pl :data) :text/plain))
|
||||||
(line (or (plist-get pl :start) 0))))
|
(line (or (plist-get pl :start) 0)))
|
||||||
(with-jupyter-repl-doc-buffer "pager"
|
(with-jupyter-repl-doc-buffer "pager"
|
||||||
(jupyter-repl-insert-ansi-coded-text text)
|
(jupyter-repl-insert-ansi-coded-text text)
|
||||||
(goto-char (point-min))
|
(goto-char (point-min))
|
||||||
(forward-line line)
|
(forward-line line)
|
||||||
(display-buffer (current-buffer))))
|
(display-buffer (current-buffer)))))
|
||||||
((or "edit" "edit_magic")
|
((or "edit" "edit_magic")
|
||||||
(with-current-buffer (find-file-other-window
|
(with-current-buffer (find-file-other-window
|
||||||
(plist-get pl :filename))
|
(plist-get pl :filename))
|
||||||
|
|
Loading…
Add table
Reference in a new issue