This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # XTerm Control Sequences based on: | |
| # - https://invisible-island.net/xterm/ctlseqs/ctlseqs.html | |
| # ========================================================================= # | |
| # XTerm Control Sequences from invisible-island.net as pythonic code. | |
| # Basic control sequences are string variables. | |
| # - eg: ESC = '\033' | |
| # CSI = ESC + '[' | |
| # Control sequences that have args can be called to return a string. | |
| # - eg: sgr = CSI + Ps + 'm' |
NewerOlder