From 58b2fa664da489c29cfad30eb892d145973e2f35 Mon Sep 17 00:00:00 2001 From: kumattau Date: Wed, 8 May 2024 08:45:52 +0900 Subject: [PATCH] Reduce unicode_column_width call --- .../src/termwindow/render/screen_line.rs | 26 ++++++++++++------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/wezterm-gui/src/termwindow/render/screen_line.rs b/wezterm-gui/src/termwindow/render/screen_line.rs index 65ad8b3d2bd3..40e43246cbbd 100644 --- a/wezterm-gui/src/termwindow/render/screen_line.rs +++ b/wezterm-gui/src/termwindow/render/screen_line.rs @@ -90,7 +90,7 @@ impl crate::TermWindow { composing_text_width = unicode_column_width(text, None); if let Some(attr) = attr { - // convert text and attr to selections + // convert SELECTED attr to selections let mut selection = 0usize..0; // iterate over byte end of each character in text for (i, end) in text @@ -101,18 +101,24 @@ impl crate::TermWindow { .take(attr.len()) .enumerate() { - // update end to unicode width - let end = unicode_column_width(&text[..end], None); - if attr[i].contains(ComposingAttribute::SELECTED) { - selection.end = end; - } - // add non-empty selection and prepare next selection - if i + 1 == attr.len() || !attr[i].contains(ComposingAttribute::SELECTED) { - if !selection.is_empty() { - composing_selections.push(selection); + // check last character or SELECTED switch + let last = end == text.len() || i + 1 == attr.len(); + if last || (attr[i] ^ attr[i + 1]).contains(ComposingAttribute::SELECTED) { + // update end to unicode width + let end = unicode_column_width(&text[..end], None); + // add selection to selections if attr[i] is end of SELECTED + if attr[i].contains(ComposingAttribute::SELECTED) { + selection.end = end; + if !selection.is_empty() { + composing_selections.push(selection); + } } + // prepare selection for next SELECTED or start of SELECTED selection = end..end; } + if last { + break; + } } } }