diff options
author | rbong <rbong@users.noreply.github.com> | 2019-08-19 15:56:27 -0400 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2019-08-19 19:56:27 +0000 |
commit | 629ea247cdccc33c6df0037f357ba9be48c7178d (patch) | |
tree | f391752e1824971747468e334cf6a38945adde6f /CHANGELOG.md | |
parent | a8692983f522e9bd37911d14dc441391a7ee2f50 (diff) | |
download | alacritty-629ea247cdccc33c6df0037f357ba9be48c7178d.tar.gz alacritty-629ea247cdccc33c6df0037f357ba9be48c7178d.zip |
Follow xparsecolor spec in escape sequences
Escape sequences in xterm are parsed according to xparsecolor.
xparsecolor supports 1, 2, 3, and 4 digit hex colors.
Previously, only 2 digits were supported.
This also fixes a bug where "fX" was parsed as "0xf", where X is an invalid character.
The response to a request for fg/bg must be a valid escape sequence.
The current response uses 4-digit hex, which was previously invalid.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 42120618..4389ce29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -65,6 +65,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 and `debug.ref_test` - Select until next matching bracket when double-clicking a bracket - Added foreground/background escape code request sequences +- Escape sequences now support 1, 3, and 4 digit hex colors ### Changed |