There's no escaping it: an exploration of ANSI codes
Posted by ankitg12 5 days ago
Comments
Comment by skissane 2 days ago
Comment by daneel_w 2 days ago
Comment by mspreij 5 days ago
Comment by trumpdong 5 days ago
Comment by kps 2 days ago
Then find DEC and XTerm extensions https://invisible-island.net/xterm/ctlseqs/ctlseqs.html
Comment by JdeBP 2 days ago
Comment by kevin_thibedeau 2 days ago
Comment by kevin_thibedeau 2 days ago
These aren't an extension. They're either part of ECMA-48 like the color codes or legacy from VT52/VT100 that has become de facto standard.
Comment by kstrauser 2 days ago
Comment by Chu4eeno 2 days ago
Comment by kevin_thibedeau 1 day ago
Comment by Lerc 2 days ago
This isn't no much a specification as a collection of variously supported codes.
Some have been deliberately killed off (like setting the window title to the string returned from a commandline string). An escape code so powerful that it gives text files shell access.
Comment by shakna 2 days ago
C0 in ISO 6429
C1 in ECMA-48
Though, the big one is C1. OS commands and CSI (graphics, cursors, etc.) are both defined in it.
And hyperlinks have sorta default to ESC]8 but its not in any of the standards. Ta to Gnome and VTE for making it semi-supported everywhere.
The Linux manpage for ANSI escapes is pretty comprehensive as a catalogue. [1] If you're looking for what you can actually use, and what has been deprecated, man should be the first stop.
[1] https://man7.org/linux/man-pages/man4/console_codes.4.html
Comment by skissane 2 days ago
The Linux console_codes(4) man page is only what escape sequences are supported by the Linux VT console, which you probably aren't using. You are more likely using a GUI terminal emulator under Wayland or X, in which case you need to look at the docs for that terminal emulator.
Most terminal emulators have more comprehensive support than the VT console does, so if the VT console supports it, a recent terminal emulator probably will too. The exception is "Linux Console Private CSI Sequences", which I doubt terminal emulators would support, although some of them could be supported.
Comment by shakna 2 days ago
Huh? Most of them have less. And none of them will have documented the OS-specific escapes, because that's kinda the role of console_codes.
xterm-specific things, which supports more than most other emulators, and a lot more than VT, is documented in... console_codes. Sure, they have their own documentation, too.
But console_codes is absolutely not only what is supported by the Linux VT console.
Comment by skissane 2 days ago
For an example of what it omits: Alternate Screen Buffer support (DECSET 1049). This is common used by full screen apps (e.g. vi, less) to save/restore the contents of the command line screen. xterm supports it; most popular terminal emulators support it; the console_codes man page does not mention it. The Linux VT console did not support it until Linux 7.1 (see https://github.com/torvalds/linux/commit/23743ba64709a9c137c...) and the console_codes man page still hasn't been updated to mention the kernel now supports it.
> And none of them will have documented the OS-specific escapes,
These aren't really "OS-specific". The Linux console defines private sequences of the form CSI Ps ; Ps ] – those aren't specific to Linux, they are specific to the Linux console – you can't assume most Linux terminal emulators support them. They also aren't technically valid per ECMA-48 – the ] terminator was already reserved for the "START DIRECTED STRING" (SDS), which was intended for use with Bidi (e.g. Arabic, Hebrew), although I'm not sure if any terminal supported it; and also, when preceded by a space, the "SELECT ALTERNATIVE PRESENTATION VARIANTS" (SAPV) function, which also relates to Bidi, but also to Indic scripts; few vendors ever implemented either function, but IBM aixterm does partially implement SAPV.
Most terminal emulators (including xterm) instead use OSC (Operating System Command) to implement custom functionality, which would have been a more defensible choice from a standards-compliance perspective, but this feature was added in the 1990s, by developers who likely didn't have a good understanding of ECMA-48. Despite OSC's name, on almost all platforms it isn't implemented by the operating system, it is implemented by the terminal emulator, and so different terminal emulators on the same OS will implement different OSC sequences. (The only exception I am personally aware of is RMX, which uses OSC to do the moral equivalent of the termios IOCTLs under Unix-like systems, and so on RMX an OSC sent by an application is actually interpreted by the tty driver as a command to change its config.)
Comment by shakna 1 day ago
ESC [ ? 1000 h
X11 Mouse Reporting (default off): Set reporting mode to 2
(or reset to 0) —see below—.
And as I _can_ see a DECSET section, the manpage is referencing it. DEC Private Mode (DECSET/DECRST) sequences
These are not described in ECMA-48. We list the Set Mode
sequences; the Reset Mode sequences are obtained by replacing the
final 'h' by 'l'.
And as there's whole sections about sequences _not_ implemented by the Linux console, it does not only contain what the Linux VT console support. Which is the opposite of your first statement. Escape sequences
VT100 console sequences not implemented on the Linux console:
ESC N SS2 Single shift 2. (Select G2 character set for
the next character only.)
Which means either we're looking at a different version of the manpage, you haven't looked before throwing things, or you just really like to argue.Comment by skissane 1 day ago
This isn't true. The Linux VT console supports both X10 and X11 mouse reporting–except the Linux kernel source code calls X11 mouse reporting "VT200" instead, but it is the same thing. It relies on a user space component (traditionally the gpm daemon) to talk to the mouse driver to get the actual mouse position, and then feed that into the VT device using the TIOCLINUX ioctl (subcode TIOCL_SETSEL, mode TIOCL_SELMOUSEREPORT)
> And as I _can_ see a DECSET section, the manpage is referencing it.
Yes, it describes DECSET. But it doesn't describe many of the DECSET codes, including 1049 and 2004 which the Linux VT console supports – see https://github.com/torvalds/linux/blob/master/drivers/tty/vt... – and the many more which xterm supports – https://invisible-island.net/xterm/ctlseqs/ctlseqs.html – other terminal emulators frequently implement many (but not necessarily all) of the DECSET codes xterm does.
> And as there's whole sections about sequences _not_ implemented by the Linux console, it does not only contain what the Linux VT console support. Which is the opposite of your first statement.
It briefly mentions a few features which xterm provide that Linux VT console doesn't. It makes no attempt to provide an exhaustive summary of all the features xterm has which are lacking in the Linux VT console, since that's the job of the xterm documentation
Comment by dang 1 day ago
Your comment would be just fine without that last sentence.
Comment by noelwelsh 5 days ago