diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2022-01-11 23:58:50 +0300 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2022-01-13 03:44:09 +0100 |
commit | 3e674d43c8f259eebcadea9886d02239999a532f (patch) | |
tree | edb2ae3737388c1a3a3cee24b79beceff39d2769 | |
parent | 79de53d61dc64649abfe8e061f8d569d57b37a08 (diff) | |
download | alacritty-3e674d43c8f259eebcadea9886d02239999a532f.tar.gz alacritty-3e674d43c8f259eebcadea9886d02239999a532f.zip |
Don't blink when cursor is hidden
This prevents unnecessary redraws when the terminal is idle, cursor is
hidden and blinking is enabled.
-rw-r--r-- | alacritty/src/event.rs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/alacritty/src/event.rs b/alacritty/src/event.rs index 24762dad..a29a101a 100644 --- a/alacritty/src/event.rs +++ b/alacritty/src/event.rs @@ -919,13 +919,15 @@ impl<'a, N: Notify + 'a, T: EventListener> ActionContext<'a, N, T> { fn update_cursor_blinking(&mut self) { // Get config cursor style. let mut cursor_style = self.config.terminal_config.cursor.style; - if self.terminal.mode().contains(TermMode::VI) { + let vi_mode = self.terminal.mode().contains(TermMode::VI); + if vi_mode { cursor_style = self.config.terminal_config.cursor.vi_mode_style.unwrap_or(cursor_style); - }; + } // Check terminal cursor style. let terminal_blinking = self.terminal.cursor_style().blinking; - let blinking = cursor_style.blinking_override().unwrap_or(terminal_blinking); + let mut blinking = cursor_style.blinking_override().unwrap_or(terminal_blinking); + blinking &= vi_mode || self.terminal().mode().contains(TermMode::SHOW_CURSOR); // Update cursor blinking state. let timer_id = TimerId::new(Topic::BlinkCursor, self.display.window.id()); |