-
Notifications
You must be signed in to change notification settings - Fork 258
Escape sequences
Chih-Hsuan Yen edited this page Dec 25, 2022
·
6 revisions
https://invisible-island.net/vttest/
Escape sequences are parsed in Vt102Emulation::receiveChar()
. Most sequences are handled in Vt102Emulation::processToken()
, and operating system commands (OSC) are handled in Vt102Emulation::processWindowAttributeChange()
.
- OSC 4 (Change Color Number) https://github.com/lxqt/qtermwidget/issues/340
- OSC 11 (Change VT100 text background color) used by neovim to query the background color instead of
$COLORFGBG
; related to https://github.com/lxqt/qtermwidget/pull/406 - OSC 52 (Manipulate Selection Data) https://github.com/lxqt/qtermwidget/issues/488
- OSC 1337 (Inline Images Protocol) https://github.com/lxqt/qtermwidget/issues/207