You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Type a multiline command into the REPL prompt, and run it e.g.:
x = 10
print(x)
Navigate up and select the two lines that were just typed, add them to the kill-ring (M-w), navigate back down to the REPL prompt (end of the buffer), and paste (C-y).
Try delete-forward-char to remove the pasted text. This now throws the error Text is read-only, even though this is text that was just pasted into the REPL prompt, which should never be read-only.
The emacs-jupyter internals are a bit beyond me, but it seems like this might be a bug in jupyter-repl-yank-handle-field-property.
Thanks!
The text was updated successfully, but these errors were encountered:
Here's a simple reproducer:
jupyter-run-repl
)M-w
), navigate back down to the REPL prompt (end of the buffer), and paste (C-y
).delete-forward-char
to remove the pasted text. This now throws the errorText is read-only
, even though this is text that was just pasted into the REPL prompt, which should never be read-only.The emacs-jupyter internals are a bit beyond me, but it seems like this might be a bug in
jupyter-repl-yank-handle-field-property
.Thanks!
The text was updated successfully, but these errors were encountered: