uiwjs / react-codemirror

CodeMirror 6 component for React. @codemirror https://uiwjs.github.io/react-codemirror/
https://uiwjs.github.io/react-codemirror/
MIT License
1.52k stars 126 forks source link

Bidirectional input (Right to Left / direction RTL) #440

Closed SaadBazaz closed 1 year ago

SaadBazaz commented 1 year ago

Hi! Thanks for this awesome repo. I need bidirectional typing in a Code Editor. It seems like vanilla CodeMirror supports it (https://codemirror.net/5/doc/manual.html, https://codemirror.net/5/demo/bidi.html), but I can't seem to find the option in the React version. How to enable it?

jaywcjlove commented 1 year ago

https://github.com/uiwjs/react-codemirror/tree/v3

@SaadBazaz use @uiw/react-codemirror@v3

npm i @uiw/react-codemirror@3.2.9
jaywcjlove commented 1 year ago
jaywcjlove commented 1 year ago
SaadBazaz commented 1 year ago

Worked by just setting:

<CodeMirror
style={{
    direction: "rtl"
}}
/>