react-textarea-code-editor icon indicating copy to clipboard operation
react-textarea-code-editor copied to clipboard

chinese input error

Open kimkit opened this issue 2 years ago • 2 comments

image

when i enter

image

kimkit avatar Jul 05 '23 13:07 kimkit

In my case, fixed by below option.

              onKeyDown={(evn) => {
                if (evn.nativeEvent.isComposing) {
                  return false
                }
              }}

ryooo avatar Jun 23 '24 11:06 ryooo

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

@kimkit I couldn't reproduce the error.

jaywcjlove avatar Jun 23 '24 11:06 jaywcjlove