123456789101112131415161718192021222324252627282930313233343536373839 |
- Miscellaneous protocol extensions
- ==============================================
- These are a few small protocol extensions kitty implements, primarily for use
- by its own kitten, they are documented here for completeness.
- Simple save/restore of all terminal modes
- --------------------------------------------
- XTerm has the XTSAVE/XTRESTORE escape codes to save and restore terminal
- private modes. However, they require specifying an explicit list of modes to
- save/restore. kitty extends this protocol to specify that when no modes are
- specified, all side-effect free modes should be saved/restored. By side-effects
- we mean things that can affect other terminal state such as cursor position or
- screen contents. Examples of modes that have side effects are: `DECOM
- <https://vt100.net/docs/vt510-rm/DECOM.html>`__ and `DECCOLM
- <https://vt100.net/docs/vt510-rm/DECCOLM.html>`__.
- This allows TUI applications to easily save and restore emulator state without
- needing to maintain lists of modes.
- Independent control of bold and faint SGR properties
- -------------------------------------------------------
- In common terminal usage, bold is set via SGR 1 and faint by SGR 2. However,
- there is only one number to reset these attributes, SGR 22, which resets both.
- There is no way to reset one and not the other. kitty uses 221 and 222 to reset
- bold and faint independently.
- kitty specific private escape codes
- ---------------------------------------
- These are a family of escape codes used by kitty for various things including
- remote control. They are all DCS (Device Control String) escape codes starting
- with ``\x1b P @ kitty-`` (ignoring spaces present for clarity).
|