diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2022-01-06 00:45:06 +0300 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2022-01-08 21:52:58 +0100 |
commit | dee083b545750bcdecf5198fe8bf271e8c9732a0 (patch) | |
tree | 61f5401b0460b7afd25cb8584a20e46668501e9a /CHANGELOG.md | |
parent | 0407182b52213199084b62c33c5c5f16b8cf7012 (diff) | |
download | alacritty-dee083b545750bcdecf5198fe8bf271e8c9732a0.tar.gz alacritty-dee083b545750bcdecf5198fe8bf271e8c9732a0.zip |
Use builtin font for box drawing unicode characters
This commit adds hand rolled drawing of unicode box drawing[1] and
block elements[2] from ranges U+2500 up to U+259f. While using system
font for such characters will look better most of the time, the
characters tend to overlap or not align, so providing builtin font is
the lesser evil here.
[1] - https://www.unicode.org/charts/PDF/U2500.pdf
[2] - https://www.unicode.org/charts/PDF/U2580.pdf
Fixes #5485.
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 8af6f2a1..d3df994c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Display area keeps history position when viewport is cleared - Commands spawn from the current directory of the foreground shell in Unix-like systems - Remove trailing newline from strings taken from hints or simple/semantic selections +- Builtin font is now used for box drawing characters from `U+2500` to `U+259f` ### Fixed |