Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In vim, I'd like to display tab-separated files such that the tab stop is strictly respected, meaning that each individual column is strictly aligned. This requires any content that does not fit into the width of a tab to be truncated. For example, with a tab-stop of 8 I would like this:

the quick fox<TAB>brown<TAB>4 legs
dog<TAB>lazy<TAB>floppy ears

to be displayed as (first line (ruler) is for illustration purposes only)

#23456781234567812345678 <- ruler
the qui|brown  |4 legs |
dog    |lazy   |floppy |

I've looked around for tab-separated and keywords like truncate and fold, but to no avail.

share|improve this question

1 Answer

up vote 2 down vote accepted

I believe you're looking for conceal (added in 7.3; :help conceal).

:syntax match Entity "[^\t]\{8}\zs[^\t]*[\t\n]" conceal cchar=|
:set conceallevel=1

Adjust the 8 to taste, or wrap the syntax command with exec to insert &ts (or &sts).

share|improve this answer
Thanks! I've not yet been able to test it, need to install 7.3 first. But it definitely seems to be right on target. – micans Nov 14 '11 at 10:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.