Appearance
VT — Vertical Tab
| Byte | 0x0B |
| Mnemonic | VT |
| Otty support | ✓ (treated as LF) |
Description
Historically advanced the cursor to the next vertical tab stop. Vertical tab stops are essentially never used on modern terminals — Otty (like every modern emulator) treats VT as a synonym for LF.
Example
bash
printf 'one\vtwo\n' # \v is the C escape for VT
# behaves like LF: "two" appears on the next row