-
Appreciating if someone could provide some examples / screenshots how that would look like? Should it also display multi-line text when in (Currently when adding multi-line input via external editor, I don't see it displayed as such. Further, on reopen wrong new rows are shown instead.) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I believe multi-line display is for showing a cell that has a single long line of content, by wrapping it across multiple lines. It's not for editing a cell to make it take up more than 1 line. For example, if your goal is to put You say you reopen the file and see wrong new rows. What is the filetype? I can imagine such a problem happening in a filetype like |
Beta Was this translation helpful? Give feedback.
I believe multi-line display is for showing a cell that has a single long line of content, by wrapping it across multiple lines. It's not for editing a cell to make it take up more than 1 line. For example, if your goal is to put
"a\nb\nc\n"
in a single cell and have it consistently be displayed as 3 lines, I do not think visidata has that ability.You say you reopen the file and see wrong new rows. What is the filetype?
I can imagine such a problem happening in a filetype like
tsv
, because as saulpw has said, quoted newlines aren't allowed in 'true' tsv files. For tsv, if you add newlines in a cell and then save it, that will create new rows at the added newlines. But forcsv
files, you …