diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-12-09 15:28:22 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-09 15:28:22 +0000 |
commit | 1cebcd660bf0b6dc514341fe6bc7a392b1572849 (patch) | |
tree | 47a4012107030a73c986e9746aee4bd3a23f1807 /CHANGELOG.md | |
parent | 47f8f1bac6f0b41fe1ad9c4267687db7a42068de (diff) | |
download | alacritty-1cebcd660bf0b6dc514341fe6bc7a392b1572849.tar.gz alacritty-1cebcd660bf0b6dc514341fe6bc7a392b1572849.zip |
Fix rendering of zero-width characters
Instead of rendering zero-width characters as full characters, they are
now properly rendered without advancing the cursor.
Because of performance limitations, this implementation only supports up
to 5 zero-width characters per cell. However, as a result of this
limitation there should not be any performance impact.
This fixes #1317, fixes #696 and closes #1318.
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 3ff77e61..528c50dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed a bad type conversion which could cause underflow on a window resize - Alacritty now spawns a login shell on macOS, as with Terminal.app and iTerm2 - Fixed zombie processes sticking around after launching URLs +- Zero-width characters are now properly rendered without progressing the cursor ## Version 0.2.3 |