uiwjs / react-textarea-code-editor

A simple code editor with syntax highlighting.
https://uiwjs.github.io/react-textarea-code-editor/
MIT License
476 stars 22 forks source link

chinese input error #156

Open kimkit opened 1 year ago

kimkit commented 1 year ago
image

when i enter

image
ryooo commented 2 months ago

In my case, fixed by below option.

              onKeyDown={(evn) => {
                if (evn.nativeEvent.isComposing) {
                  return false
                }
              }}
jaywcjlove commented 2 months ago

https://github.com/uiwjs/react-textarea-code-editor/assets/1680273/211ea8f9-17b8-47d8-ac45-e6ca4788438d

@kimkit I couldn't reproduce the error.