diff options
author | Christian Duerr <contact@christianduerr.com> | 2024-10-05 11:39:06 +0200 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2024-10-07 01:02:10 +0200 |
commit | a1ed79bd2c014be49a85e2100ce374b86c8839e8 (patch) | |
tree | 907f1e54be7447f310a9bef38165a5b2a314ea4a /CHANGELOG.md | |
parent | 709738f7b50e06166b15be9f28e33a54b159150b (diff) | |
download | alacritty-a1ed79bd2c014be49a85e2100ce374b86c8839e8.tar.gz alacritty-a1ed79bd2c014be49a85e2100ce374b86c8839e8.zip |
Fix highlight invalidation on grid scroll
This fixes an issue where hints highlighted by vi or mouse cursor would
produce an underline on the incorrect line since the highlights only
store the initial match boundaries without accounting for new content
scrolling the terminal.
To accurately invalidate the hint highlights, we use existing damage
information of the current frame. The existing logic to damage hints for
the next frame to account for removal has been changed, since the hints
would otherwise be cleared immediately. Instead we now mark the terminal
as fully damaged for the upcoming frame whenever the hints are cleared.
Closes #7737.
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 659a098e..2026893c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,6 +45,7 @@ Notable changes to the `alacritty_terminal` crate are documented in its - Fullwidth semantic escape characters - 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 ## 0.13.2 |