diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2024-10-15 11:41:08 +0300 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2024-10-15 20:12:21 +0000 |
commit | b56a0e86b7681d0ee8ed239844ecfe92bbf87f7b (patch) | |
tree | 77671ca3e0b1bffb2877566a82a2720c8f874db4 /CHANGELOG.md | |
parent | 6b3a85606bf04601dbe41140cea29a4abbac2f78 (diff) | |
download | alacritty-b56a0e86b7681d0ee8ed239844ecfe92bbf87f7b.tar.gz alacritty-b56a0e86b7681d0ee8ed239844ecfe92bbf87f7b.zip |
Implement multi-char cursor highlight
Use `end` of the cursor to draw a `HollowBlock` from `start` to `end`.
When cursor covers only a single character, use `Beam` cursor instead
of `HollowBlock`.
Fixes #8238.
Fixes #7849.
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 0c0634f3..15063ca9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ Notable changes to the `alacritty_terminal` crate are documented in its to the new `general` section - Moved config option `shell` to `terminal.shell` - `ctrl+shift+u` binding to open links to `ctrl+shift+o` to avoid collisions with IMEs +- Use `Beam` cursor for single char cursor inside the IME preview ### Fixed @@ -48,6 +49,7 @@ Notable changes to the `alacritty_terminal` crate are documented in its - Windows app icon now displays properly in old alt+tab on Windows - Alacritty not being properly activated with startup notify - Invalid URL highlights after terminal scrolling +- Hollow block cursor not spanning multiple chars being edited inside the IME preview ## 0.13.2 |