Hi, I have implemented a editor with the minimal config. When I type at the end of the line the position is changed to 1 position before the end. Example:
I have the string “abc” in the line
I set the cursor at the end of the line
I type “de”
Expected : abcde
Real: abced.
I notice the error occurs only when the cursor is in the last position of a line.
initial string
type c (new position issue)
type e
I am usign angular 14, but i could not find the reason for that? Have you seen this issue before?