Small description
When I read this TSV file, that has inside cells some CRLF, visidata does not map correctly cells.
Expected result
Using LibreOffice I have no problem

Actual result with screenshot
Using VisiData v1.5.2 I have this

That TSV does not seem to me wrong, because the CRLFs are inside double quotes.
Thank you so much for the detailed bug report @aborruso!
From a glance, the tsv loader code does not seem to support a quotechar.
The csv loader does!
A current workaround, until we have an opportunity to give this issue more attention, is to load these files with the csv loader, and specify a tab delimiter. You can do that:
vd input.tsv -f csv --csv-delimiter=$'\t'
I didn't know about the dollar sign @anjakefala, I always typed ctrl-v
hi @anjakefala $'\t' is the ANSI C way to write the tab char?
:joy:
Saul taught me this! It blew my mind, too. I asked him how to pass a tab just before commenting on this issue.
From what I understand, the $ tells the shell to interpret \ escapes. Instead of literally taking the "\" as string, it interpets the \t as a backslash'd entity.
This is the correct solution, as quoted newlines aren't allowed in 'true' tsv files.
Most helpful comment
This is the correct solution, as quoted newlines aren't allowed in 'true' tsv files.