History
Almost all manufacturers of video terminals added vendor-specific escape sequences to perform operations such as placing the cursor at arbitrary positions on the screen. One example is the VT52 terminal, which allowed the cursor to be placed at an x,y location on the screen by sending the character, a character, and then two characters representing numerical values equal to the x,y location plus 32 (thus starting at the ASCII space character and avoiding the control characters). The Hazeltine 1500 had a similar feature, invoked using , and then the X and Y positions separated with a comma. While the two terminals had identical functionality in this regard, different control sequences had to be used to invoke them. As these sequences were different for different terminals, elaborate libraries such as termcap ("terminal capabilities") and utilities such as tput had to be created so programs could use the same API to work with any terminal. In addition, many of these terminals required sending numbers (such as row and column) as the binary values of the characters; for some programming languages, and for systems that did not use ASCII internally, it was often difficult to turn a number into the correct character. The ANSI standard attempted to address these problems by making a command set that all terminals would use and requiring all numeric information to be transmitted as ASCII numbers. The first standard in the series was ECMA-48, adopted in 1976. It was a continuation of a series of character coding standards, the first one being ECMA-6 from 1965, a 7-bit standard from which ISO 646 originates. The name "ANSI escape sequence" dates from 1979 when ANSI adopted ANSI X3.64. The ANSI X3L2 committee collaborated with thePlatform support
Unix-like systems
$TERM
environment variable. A database library such as termcap or terminfo would perform a lookup to derive the capabilities of the terminal and specific escape sequences to use the capabilities, which may deviate from ANSI in early days.
Although such libraries were primarily developed on and for Unix, by the mid-1980s programs running on Unix-like operating systems could almost always assume they were using a terminal or emulator that supported ANSI sequences; this led to widespread use of ANSI by programs running on those platforms. For instance, many games and shell scripts, and utilities such as color directory listings, directly write the ANSI sequences and thus cannot be used on a terminal that does not interpret them. Many programs, including text editors such as vi and GNU Emacs, use termcap or terminfo, or use libraries such as curses that use termcap or terminfo, and thus in theory support non-ANSI terminals, but this is so rarely tested nowadays that they are unlikely to work with those terminals.
Terminal emulators for communicating with local programs as well as remote machines and the text system console almost always support ANSI escape codes. This includes terminal emulators such as xterm, rxvt, GNOME Terminal, and Konsole on systems with X11-based or Wayland-based window systems, and CP/M
DOS, OS/2, and Windows
MS-DOS 1.x did not support the ANSI or any other escape sequences. Only a few control characters (Atari ST/TT/Falcon series
AmigaOS
AmigaOS not only interprets ANSI code sequences for text output to the screen, the AmigaOS printer driver also interprets them (with extensions proprietary to AmigaOS) and translates them into the codes required for the particular printer that is actually attached.VMS / OpenVMS
Description
C0 control codes
Almost all users assume some functions of some single-byte characters. Initially defined as part of ASCII, the default C0 control code set is now defined in ISO 6429 (ECMA-48), making it part of the same standard as the C1 set invoked by the ANSI escape sequences (although ISO 2022 allows the ISO 6429 C0 set to be used without the ISO 6429 C1 set, and ''vice versa'', provided that 0x1B is always ESC). This is used to shorten the amount of data transmitted, or to perform some functions that are unavailable from escape sequences: Escape sequences vary in length. The general format for an ANSI-compliant escape sequence is defined byFe Escape sequences
If the is followed by a byte in the range 0x40 to 0x5F, the escape sequence is of type . Its interpretation is delegated to the applicableCSI (Control Sequence Introducer) sequences
For Control Sequence Introducer, or CSI, commands, the is followed by any number (including none) of "parameter bytes" in the range 0x30–0x3F (ASCII0–9:;<=>?
), then by any number of "intermediate bytes" in the range 0x20–0x2F (ASCII space and ), then finally by a single "final byte" in the range 0x40–0x7E (ASCII @A–Z _`a–z~
).
All common sequences just use the parameters as a series of semicolon-separated numbers such as . Missing numbers are treated as ( acts like the middle number is , and no parameters at all in acts like a reset code). Some sequences (such as CUU) treat as in order to make missing parameters useful.
A subset of arrangements was declared "private" so that terminal manufacturers could insert their own sequences without conflicting with the standard. Sequences containing the parameter bytes <=>?
or the final bytes 0x70–0x7E (p–z~
) are private.
The behavior of the terminal is undefined in the case where a CSI sequence contains any character outside of the range 0x20–0x7E. These illegal characters are either C0 control characters (the range 0–0x1F), DEL (0x7F), or bytes with the high bit set. Possible responses are to ignore the byte, to process it immediately, and furthermore whether to continue with the CSI sequence, to abort it immediately, or to ignore the rest of it.
SGR (Select Graphic Rendition) parameters
The control sequenceCSI m
, named Select Graphic Rendition (SGR), sets display attributes. Several attributes can be set in the same sequence, separated by semicolons. Each display attribute remains in effect until a following occurrence of SGR resets it. If no codes are given, is treated as (reset / normal).
Colors
= 3-bit and 4-bit
= The original specification only had 8 colors, and just gave them names. The SGR parameters 30–37 selected the foreground color, while 40–47 selected the background. Quite a few terminals implemented "bold" (SGR code 1) as a brighter color rather than a different font, thus providing 8 additional foreground colors. Usually you could not get these as background colors, though sometimes inverse video (SGR code 7) would allow that. Examples: to get black letters on white background use , to get red use , to get bright red use . To reset colors to their defaults, use (not supported on some terminals), or reset all attributes with . Later terminals added the ability to directly specify the "bright" colors with 90–97 and 100–107. When hardware started using 8-bit digital-to-analog converters (DACs) several pieces of software assigned 24-bit color numbers to these names. The chart below shows the default values sent to the DAC for some common hardware and software; in most cases they are configurable.= 8-bit
= As 256-color lookup tables became common on graphic cards, escape sequences were added to select from a pre-defined set of 256 colors: ESC[38;5;m Select foreground color where n is a number from the table below ESC[48;5;m Select background color 0- 7: standard colors (as in ESC [ 30–37 m) 8- 15: high intensity colors (as in ESC [ 90–97 m) 16-231: 6 × 6 × 6 cube (216 colors): 16 + 36 × r + 6 × g + b (0 ≤ r, g, b ≤ 5) 232-255: grayscale from dark to light in 24 steps The ITU's T.416 Information technology - Open Document Architecture (ODA) and interchange format: Character content architectures uses ':' as separator characters instead: ESC[38:5:m Select foreground color where n is a number from the table below ESC 8:5:m Select background color There has also been a similar but incompatible 88-color encoding using the same escape sequence, seen in and . Not much is known about the scheme besides the color codes. It uses a 4×4×4 color cube.= 24-bit
= As "true color" graphic cards with 16 to 24 bits of color became common, applications began to support 24-bit colors. Terminal emulators supporting setting 24-bit foreground and background colors with escape sequences include Xterm, KDE's Konsole, and iTerm, as well as all libvte based terminals, including GNOME Terminal. ESC 38;2;;; m Select RGB foreground color ESC[ 48;2;;; m Select RGB background color The syntax is likely based on the ITU's T.416 Open Document Architecture (ODA) and interchange format: Character content architectures, which was adopted as ISO/IEC 8613-6 but ended up as a commercial failure. The ODA version is more elaborate and thus incompatible: * The parameters after the '2' (r, g, and b) are optional and can be left empty. * Semicolons are replaced by colons, as above. * There is a leading "colorspace ID". The definition of the colorspace ID is not included in that document so it may be blank to represent the unspecified default. * In addition to the '2' value after 48 to specify a Red-Green-Blue format (and the '5' above for a 0-255 indexed color), there are alternatives of '0' for implementation-defined and '1' for transparent - neither of which have any further parameters; '3' specifies colors using a Cyan-Magenta-Yellow scheme, and '4' for a Cyan-Magenta-Yellow-Black one, the latter using the position marked as "unused" for the Black component: ESC[ 38:2::::::: m Select RGB foreground color ESC[ 48:2::::::: m Select RGB background color The ITU-RGB variation is supported by xterm, with the colorspace ID and tolerance parameters ignored. The simpler scheme using semicolons is initially found in Konsole.= Unix environment variables relating to color support
= Before termcap and terminfo could indicate support for colors, the S-Lang library used to indicate whether a terminal emulator could use colors at all (later reinterpreted as 256-colors) and whether it supports 24-bit color. This system, although poorly documented, became widespread enough for Fedora and RHEL to consider using it as a simpler and more universal detection mechanism compared to querying the now-updated libraries. However, gnome-terminal 3.14 dropped this variable as its authors considered it incorrect and no longer necessary. Some terminal emulators (urxvt, konsole) set to report the color scheme of the terminal (mainly light vs. dark background). This behavior originated in S-Lang and is used by vim. Again, gnome-terminal refuses to add this behavior, as the more "proper" xterm OSC 4/10/11 sequences already exist.OSC (Operating System Command) sequences
Most Operating System Command sequences were defined by Xterm, but many are also supported by other terminal emulators. For historical reasons, Xterm can end the command with Bell character"> as well as the standard . For example, Xterm allows the window title to be set by . A non-xterm extension is the hyperlink, from 2017, used by VTE, iTerm2, and mintty. The Linux console uses to change the palette, which, if hard-coded into an application, may hang other terminals. However, appending will be ignored by Linux and form a proper, ignorable sequence for other terminals.Fs Escape sequences
If the is followed by a byte in the range , the escape sequence is of type . This type is used for control functions individually registered with the ISO-IR registry and, consequently, available even in contexts where a different C1 control code set is used. Specifically, they correspond to single control functions approved byFp Escape sequences
If the is followed by a byte in the range , the escape sequence is of type , which is set apart for up to sixteen private-use control functions.nF Escape sequences
If the is followed by a byte in the range , the escape sequence is of type . Said byte is followed by any number of additional bytes in this range, and then a byte in the range . These escape sequences are further subcategorised by the low four bits of the first byte, e.g. "type " for sequences where the first byte is ; and by whether the final byte is in the range indicating private use (e.g. "type ") or not (e.g. "type "). Escape sequences of this type are mostly used for ANSI/ISO code-switching mechanisms such as those used by ISO-2022-JP, except for type sequences (those where the first intermediate byte is ), which are used for individual control functions. Type sequences are reserved for additional ISO-IR registered individual control functions, while type sequences are available for private-use control functions. Unlike type sequences, no type sequences are presently registered.Examples
— This clears the screen and, on some devices, locates the cursor to the y,x position 1,1 (upper left corner). — This makes text green. The green may be a dark, dull green, so you may wish to enable Bold with the sequence which would make it bright green, or combined as . Some implementations use the Bold state to make the character Bright. — This reassigns the key F10 to send to the keyboard buffer the string "DIR" and ENTER, which in the DOS command line would display the contents of the current directory. (MS-DOS ANSI.SYS only) This was sometimes used forIn shell scripting
ANSI escape codes are often used in UNIX and UNIX-like terminals to provide syntax highlighting. For example, on compatible terminals, the following '' list'' command color-codes file and directory names by type. Users can employ escape codes in their scripts by including them as part of '' standard output'' or '' standard error''. For example, the following GNU '' sed'' command embellishes the output of the '' make'' command by displaying lines containing words starting with "WARN" in reverse video and words starting with "ERR" in bright yellow on a dark red background (In C
Terminal input sequences
Pressing special keys on the keyboard, as well as outputting many xterm CSI, DCS, or OSC sequences, often produces a CSI, DCS, or OSC sequence, sent from the terminal to the computer as though the user typed it. When typing input on a terminal keypresses outside the normal main alphanumeric keyboard area can be sent to the host as ANSI sequences. For keys that have an equivalent output function, such as the cursor keys, these often mirror the output sequences. However, for most keypresses there isn't an equivalent output sequence to use. There are several encoding schemes, and unfortunately most terminals mix sequences from different schemes, so host software has to be able to deal with input sequences using any scheme. To complicate the matter, the VT terminals themselves have two schemes of input, ''normal mode'' and ''application mode'' that can be switched by the application. (draft section)If the terminating character is '~', the first number must be present and is a keycode number, the second number is an optional modifier value. If the terminating character is a letter, the letter is the keycode value, and the optional number is the modifier value. The modifier value defaults to 1, and after subtracting 1 is a bitmap of modifier keys being pressed: Meta-Ctrl-Alt-Shift. So, for example, <esc>[4;2~ is Shift-End, <esc>[20~ is function key 9, <esc>[5C is Ctrl-Right. In other words, the modifier is the sum of the following numbers:-> char -> esc -> esc -> Alt-keypress or keycode sequence '[' -> Alt-[ '[' ( ) -> keycode sequence, is a decimal number and defaults to 1 (xterm) '[' ( ) (';' ) '~' -> keycode sequence, and are decimal numbers and default to 1 (vt)
vt sequences:<esc>[A to <esc>[D are the same as the ANSI output sequences. The <modifier> is normally omitted if no modifier keys are pressed, but most implementations always emit the <modifier> for F1-F4. (draft section) Xterm has a comprehensive documentation page on the various function-key and mouse input sequence schemes from DEC's VT terminals and various other terminals it emulates. Thomas Dickey has added a lot of support to it over time; he also maintains a list of default keys used by other terminal emulators for comparison. * On the Linux console, certain function keys generate sequences of the form[1~ - Home [16~ - [31~ - F17 [2~ - Insert [17~ - F6 [32~ - F18 [3~ - Delete [18~ - F7 [33~ - F19 [4~ - End [19~ - F8 [34~ - F20 [5~ - PgUp [20~ - F9 [35~ - [6~ - PgDn [21~ - F10 [7~ - Home [22~ - [8~ - End [23~ - F11 [9~ - [24~ - F12 [10~ - F0 [25~ - F13 [11~ - F1 [26~ - F14 [12~ - F2 [27~ - [13~ - F3 [28~ - F15 [14~ - F4 [29~ - F16 [15~ - F5 [30~ - xterm sequences: [A - Up [K - [U - [B - Down [L - [V - [C - Right [M - [W - [D - Left [N - [X - [E - [O - [Y - [F - End [1P - F1 [Z - [G - Keypad 5 [1Q - F2 [H - Home [1R - F3 [I - [1S - F4 [J - [T -
CSI [ ''char''
. The CSI sequence should terminate on the [
.
* Old versions of Terminator (terminal emulator)">Terminator
Terminator may refer to:
Science and technology
Genetics
* Terminator (genetics), the end of a gene for transcription
* Terminator technology, proposed methods for restricting the use of genetically modified plants by causing second generation s ...SS3 1; ''modifiers'' ''char''
when F1–F4 are pressed with modifiers. The faulty behavior was copied from GNOME Terminal.
* xterm replies CSI ''row'' ; ''column'' R
if asked for cursor position and CSI 1 ; ''modifiers'' R
if the F3 key is pressed with modifiers, which collide in the case of ''row'' 1. This can be avoided by using the ''?'' private modifier as CSI ? 6 n
, which will be reflected in the response as CSI ? ''row'' ; ''column'' R
.
* many terminals prepend ESC
to any character that is typed with the alt key down. This creates ambiguity for uppercase letters and symbols @ _
, which would form C1 codes.
* Konsole generates SS3 ''modifiers'' ''char''
when F1–F4 are pressed with modifiers.
See also
* ANSI art * Control character * Advanced Video Attribute Terminal Assembler and Recreator (AVATAR) *Notes
References
External links