Increment char_index by grapheme char count.

It was just assuming single-char graphemes before.
pull/228/head
Nathan Vegdahl 3 years ago committed by Blaž Hrastnik
parent 0cbaa998ce
commit 481c4ba044

@ -229,7 +229,7 @@ impl EditorView {
visual_x += width;
}
char_index += 1;
char_index += grapheme.chars().count();
}
}
}

Loading…
Cancel
Save