The standard file extensions for a TSV are .tsv and .tab.
zsv commands where the argument is a .tsv or .tab file should choose the -t option by default.
Current
> zsv pretty data/tysto.tsv | head -n 5
uk us
accessorise accessorize
accessorised accessorized
accessorises accessorizes
accessorising accessorizing
Expected
> zsv pretty data/tysto.tsv | head -n 5
uk |us
accessorise |accessorize
accessorised |accessorized
accessorises |accessorizes
accessorising |accessorizing
The expected output was produced using zsv pretty -t data/tysto.tsv
The standard file extensions for a TSV are
.tsvand.tab.zsv commands where the argument is a
.tsvor.tabfile should choose the-toption by default.Current
Expected
The expected output was produced using
zsv pretty -t data/tysto.tsv