Replies: 1 comment 2 replies
-
Issues like this around Android input are tracked in #3600. You're pretty much right where the textarea's text representation is difficult to what's on screen, so Android's IME doesn't play nicely. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using ng-terminal in my project. I observed this unexpected behaviour when I use terminal in android chrome. When I backspace in the terminal, I erase previous command input by 1 character and keep going to previous command history.
Browser and version: Android Chrome - 109.0.5414.46 xterm.js version: 5.0.0
The key issue I think we're facing, aside from the behaviour being odd, is the backspace buffer. I suspect that the keyboard has its own buffer of text that isn't being cleared when the app decides to consume the text, and when you backspace, it moves back in to this buffer This is why each word reappears when you backspace.
Beta Was this translation helpful? Give feedback.
All reactions