Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What was the original historical use of the vertical tab character (\v in the C language, ASCII 11)?

Did it ever have a key on a keyboard? How did someone generate it?

Is there any language or system still in use today where the vertical tab character does something interesting and useful?

share|improve this question
5  
Great explanation here: en.wikipedia.org/wiki/Tab_key – Zabba Aug 1 '10 at 2:44
1  
I've been using it in .vsv files so I don't have to think about how to quote textual data in my fields. – Ron Jul 17 '12 at 15:31

4 Answers

up vote 36 down vote accepted

Vertical tab was used to speed up printer vertical movement. Some printers used special tab belts with various tab spots. This helped align content on forms. VT to header space, fill in header, VT to body area, fill in lines, VT to form footer. Generally it was coded in the program as a character constant. From the keyboard, it would be CTRL-K.

I don't believe anyone would have a reason to use it any more. Most forms are generated in a printer control language like postscript.

share|improve this answer
1  
It could also be use to scroll the screen quickly. Useful in the days of 300 Baud. – Talvi Watia Aug 1 '10 at 3:08
4  
+1 for the use of the KBD tag, something I never knew existed until now! :-) – Justin Grant Aug 1 '10 at 5:53

Microsoft Word uses VT as a line separator, to distinguish it from the normal new line function which is used a paragraph separator.

share|improve this answer

It was used during the typewriter era to move down a page to the next vertical stop, typically spaced 6 lines apart (much the same way horizontal tabs move along a line by 8 characters).

In modern day settings, the vt is of very little, if any, significance.

share|improve this answer

I believe it's still being used, not sure exactly. There might be even a key combination of it.

As English is written Left to Right, Arabic Right to Left, there are languages in world that are also written top to bottom. In that case a vertical tab might be useful same as the horizontal tab is used for English text.

I tried searching, but couldn't find anything useful yet.

share|improve this answer

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.