Skip to content

Commit

Permalink
Reduce unicode_column_width call
Browse files Browse the repository at this point in the history
  • Loading branch information
kumattau committed May 7, 2024
1 parent 1163d17 commit 58b2fa6
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions wezterm-gui/src/termwindow/render/screen_line.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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;
}
}
}
}
Expand Down

0 comments on commit 58b2fa6

Please sign in to comment.