#2394·docmost

[Feature request] When selecting cells in a table offer a quick way to write a CSV of these cells into clipboard.

Author: alexeyabelCreated Aug 15, 2026Updated Sep 9, 2026

When cells are selected in a table, provide a quick action to copy the selected cells as CSV. If this table exists:

Name Age City
Alice 32 Berlin
Bob 28 Paris
Carol 41 Rome

when selecting:

Age City
32 Berlin
28 Paris

docmost should offer a UI elment with Copy as CSV or do this automatically (when mouse button is released clipboard is fiilled)

and write this to the clipboard:

32,Berlin
28,Paris

Preserve the selected row and column order and use normal CSV escaping.