react-textarea-code-editor
react-textarea-code-editor copied to clipboard
chinese input error
when i enter
In my case, fixed by below option.
onKeyDown={(evn) => {
if (evn.nativeEvent.isComposing) {
return false
}
}}
https://github.com/uiwjs/react-textarea-code-editor/assets/1680273/211ea8f9-17b8-47d8-ac45-e6ca4788438d
@kimkit I couldn't reproduce the error.