Increment char_index by grapheme char count.

It was just assuming single-char graphemes before.
pull/228/head
Nathan Vegdahl 2021-06-22 19:05:56 -07:00 committed by Blaž Hrastnik
parent 0cbaa998ce
commit 481c4ba044
1 changed files with 1 additions and 1 deletions

View File

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