changelog: rewrite entry for combining characters

This commit is contained in:
Daniel Eklöf 2020-05-01 12:00:01 +02:00
parent 623329cf23
commit 9f3d07ff21
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -22,14 +22,12 @@
* Right mouse button extends the current selection. * Right mouse button extends the current selection.
* `CSI Ps ; Ps ; Ps t` escape sequences for the following parameters: * `CSI Ps ; Ps ; Ps t` escape sequences for the following parameters:
`11t`, `13t`, `13;2t`, `14t`, `14;2t`, `15t`, `19t`. `11t`, `13t`, `13;2t`, `14t`, `14;2t`, `15t`, `19t`.
* (Optional) spport for unicode combining characters. For example, * Unicode combining characters. This feature is optional. By default,
`a\u0301` will be combined to `á` (`\u00e1`). Note that copying the it is enabled if
printed character to the clipboard/primary selection will copy the [utf8proc](https://github.com/JuliaStrings/utf8proc) is available,
byte `\u00e1` and **not** `\u0061\u0301`. It requires but can be explicitly disabled or enabled at compile time with
[utf8proc](https://github.com/JuliaStrings/utf8proc). By default, `meson -Dunicode-combining=disabled|enabled`.
the feature is enabled if utf8proc is found. However, it can also be
explicitly disabled (or enabled) with `meson
-Dunicode-combining=enabled|disabled`)
### Changed ### Changed