mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 01:21:38 -05:00
Add messaging in ein:notebook-copy-cell-command
This commit is contained in:
parent
7d81026f2c
commit
54a3d3687b
1 changed files with 5 additions and 2 deletions
|
@ -461,8 +461,11 @@ kill-ring of Emacs (kill-ring for texts)."
|
|||
(interactive)
|
||||
(ein:notebook-with-cells-in-region
|
||||
(deactivate-mark)
|
||||
(ein:kill-new
|
||||
(mapcar (lambda (c) (ein:cell-deactivate (ein:cell-copy c))) cells))))
|
||||
(let ((cells (mapcar
|
||||
(lambda (c)
|
||||
(ein:cell-deactivate (ein:cell-copy c))) cells)))
|
||||
(ein:log 'info "%s cells are copied." (length cells))
|
||||
(ein:kill-new cells))))
|
||||
|
||||
(defun ein:notebook-insert-clone-below (notebook cell pivot)
|
||||
(let ((clone (ein:cell-copy cell)))
|
||||
|
|
Loading…
Add table
Reference in a new issue