mirror of https://github.com/helix-editor/helix
Increment char_index by grapheme char count.
It was just assuming single-char graphemes before.pull/228/head
parent
0cbaa998ce
commit
481c4ba044
|
@ -229,7 +229,7 @@ impl EditorView {
|
|||
visual_x += width;
|
||||
}
|
||||
|
||||
char_index += 1;
|
||||
char_index += grapheme.chars().count();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue