mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 06:54:45 +03:00
parent
1be7665c14
commit
6ef039a726
@ -64,6 +64,7 @@ As features stabilize some brief notes about them will accumulate here.
|
||||
* Improved: VT102 conformance. Many thanks to [Autumn Lamonte](https://gitlab.com/klamonte)! [#904](https://github.com/wez/wezterm/pull/904)
|
||||
* New: [text_blink_rate](config/lua/config/text_blink_rate.md) and [text_blink_rate_rapid](config/lua/config/text_blink_rate_rapid.md) options to control blinking text. Thanks to [Autumn Lamonte](https://gitlab.com/klamonte)! [#904](https://github.com/wez/wezterm/pull/904)
|
||||
* New: Added support for [Synchronized Rendering](https://gist.github.com/christianparpart/d8a62cc1ab659194337d73e399004036) [#882](https://github.com/wez/wezterm/issues/882)
|
||||
* New: wezterm now draws its own pixel-perfect versions of more block drawing glyphs. See [custom_block_glyphs](config/lua/config/custom_block_glyphs.md) for more details. [#584](https://github.com/wez/wezterm/issues/584)
|
||||
|
||||
### 20210502-154244-3f7122cb
|
||||
|
||||
|
@ -2,12 +2,19 @@
|
||||
|
||||
*Since: 20210314-114017-04b7cedd*
|
||||
|
||||
When set to `true` (the default), WezTerm will compute its own idea of what the
|
||||
[U2580](https://www.unicode.org/charts/PDF/U2580.pdf) unicode block elements
|
||||
range, instead of using glyphs resolved from a font.
|
||||
When set to `true` (the default), WezTerm will compute its own idea of what the glyphs
|
||||
in the following unicode ranges should be, instead of using glyphs resolved from a font.
|
||||
|
||||
Ideally this option wouldn't exist, but it is present to work around a [hinting issue in freetype](https://gitlab.freedesktop.org/freetype/freetype/-/issues/761).
|
||||
|
||||
|Block|What|Since|
|
||||
+-----+----+-----+
|
||||
|[U2500](https://www.unicode.org/charts/PDF/U2580.pdf)|Box Drawing|*Nightly builds only*|
|
||||
|[U2580](https://www.unicode.org/charts/PDF/U2580.pdf)|unicode block elements|*20210314-114017-04b7cedd*|
|
||||
|[U1FB00](https://www.unicode.org/charts/PDF/U1FB00.pdf)|Symbols for Legacy Computing (Sextants and Smooth mosaic graphics)|*Nightly builds only*|
|
||||
|[U2800](https://www.unicode.org/charts/PDF/U2800.pdf)|Braille Patterns|*Nightly builds only*|
|
||||
|[Powerline](https://github.com/ryanoasis/powerline-extra-symbols#glyphs)|Powerline triangle, curve and diagonal glyphs|*Nightly builds only*|
|
||||
|
||||
You can set this to `false` to use the block characters provided by your font selection.
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user