diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-09-19 19:18:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-19 19:18:51 +0000 |
commit | d387ebe1d7fe9f9fe9d840039aba68efffe5a233 (patch) | |
tree | 626999eaf8ff0e848d574953135c4a93b8041121 /CHANGELOG.md | |
parent | f0ce64e24b2ad3cce0a223d17f04413cd6c49810 (diff) | |
download | alacritty-d387ebe1d7fe9f9fe9d840039aba68efffe5a233.tar.gz alacritty-d387ebe1d7fe9f9fe9d840039aba68efffe5a233.zip |
Add hidden escape sequence
This adds support for the `hidden` escape sequence `\e[8m`, which will
render the text as invisible.
This has also raised a few questions about the rendering of foreground
and background colors and their interaction with the different escape
sequences. Previously, Alacritty has oriented itself after URxvt, which
has some strange and unexpected behavior.
The new implementation of color inversion is modeled after XTerm, which
has a consistent pattern of always inverting the foreground and
background colors. This should hopefully lead to less confusion for the
user and a more consistent behavior.
A full matrix showcasing the new way Alacritty inverses text can be
found here:
https://i.imgur.com/d1XavG7.png
This fixes #1454 and fixes #1455.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index fa3af77b..5c78cc7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,11 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- Implement the `hidden` escape sequence (`echo -e "\e[8mTEST"`) - Add support for macOS systemwide dark mode - Set the environment variable `COLORTERM="truecolor"` to advertise 24-bit color support ### Changed +- Inverse/Selection color is now modelled after XTerm/VTE instead of URxvt to improve consistency - First click on unfocused Alacritty windows is no longer ignored on platforms other than macOS ## Version 0.2.0 |