The copy functions work on rectangular regions of cells. You can paste the copies into non-SES buffers to export the print text.
Copy the highlighted cells to kill ring and primary clipboard
(kill-ring-save
).
Mark a region and copy it to kill ring and primary clipboard
(mouse-set-region
).
Mark a region and copy it to kill ring and secondary clipboard
(mouse-set-secondary
).
The cut functions do not actually delete rows or columns—they copy
and then clear (ses-kill-override
).
Paste from kill ring (yank
). The paste functions behave
differently depending on the format of the text being inserted:
Paste from primary clipboard or kill ring (clipboard-yank
).
Set point and paste from primary clipboard (mouse-yank-at-click
).
Set point and paste from secondary clipboard (mouse-yank-secondary
).
Immediately after a paste, you can replace the text with a preceding
element from the kill ring (ses-yank-pop
). Unlike the standard
Emacs yank-pop, the SES version uses undo
to delete the old
yank. This doesn’t make any difference?