In addition to Rich’s suggestion, you could set tab width to a larger-than-normal size, to put more space between columns.
I have a little utility written in Applescript, saved in BBEdit’s Scripts folder, that adds 12 spacebar spaces to the tab width. Successive calls to the script keep widening the tabs until they hit a maximum (64 spaces), at which it reverts to standard 4 spaces per tab.
tell application “BBEdit"
set tabW to tab width of text window 1
if tabW > 64 then
set tabW to 4
else
set tabW to tabW + 12
end if
set tab width of text window 1 to tabW
end tell
I assign a keyboard combo to the script (in BBEdit’s Menus and Shortcuts settings/preferences), so I can quickly space out some columns to more clearly view the data.
Changing BBEdit’s tab width doesn’t change the file, just the view in BBEdit.
Also check out the Edit -> Columns menu, which allows selecting and manipulating whole columns. Sometimes a column selection will reveal a problem.
Another approach, which you might prefer over visually inspecting your files, would be a script that checks every line to be sure there are correct number of columns (or tabs). The core of such a script could be a regular expression that assumes the correct number of columns; if you search on it BBEdit, you’ll get a results window with the number of records/lines found - if that’s not the same as the number of lines in the file, you’ll need to check the file. A more elaborate script could pull out the errant lines for you...
— Bruce
_bruce__van_allen__santa_cruz_ca_
> <tsv.jpg>
>
> --
> This is the BBEdit Talk public discussion group. If you have a feature request or need technical support, please email "
sup...@barebones.com" rather than posting here. Follow @bbedit on Twitter: <
https://twitter.com/bbedit>
> ---
> You received this message because you are subscribed to the Google Groups "BBEdit Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
bbedit+un...@googlegroups.com.
> To view this discussion on the web visit
https://groups.google.com/d/msgid/bbedit/a0702843-bbee-486f-a828-0bb6faff8d51n%40googlegroups.com.
> <tsv.jpg>