Re: how to copy a column of a table (with content)

2022-01-20 Thread Uwe Brauer
Hi Marco > Uwe Brauer writes: > I use the following function occasionally. Possibly it helps in your case. > (defun mw-org-table-mark-column () > "Mark the column containing point." > (interactive) > (unless (org-at-table-p) (user-error "Not at a table")) > (org-table-find-dataline) >

Re: how to copy a column of a table (with content)

2022-01-20 Thread Marco Wahl
Uwe Brauer writes: > I sometime have to deal with table that contains large columns and I > want to copy that columns and modify them a bit. > > So I usually just insert an empty column and use kill-rectangle and > yank-rectangle. > > I am wondering, there seems no > org-table-kill-this-column