Increment char_index by grapheme char count.

It was just assuming single-char graphemes before.
This commit is contained in:
Nathan Vegdahl 2021-06-22 19:05:56 -07:00 committed by Blaž Hrastnik
parent 0cbaa998ce
commit 481c4ba044

View file

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