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

Disable prop #153

Closed clay53 closed 1 year ago

clay53 commented 1 year ago

Add prop to allow disabling the code editor (not-editable)

jaywcjlove commented 1 year ago

@clay53 https://codesandbox.io/embed/https-github-com-uiwjs-react-textarea-code-editor-issues-153-7694n4?fontsize=14&hidenavigation=1&theme=dark

<CodeEditor
  value={code}
  language="js"
  placeholder="Please enter JS code."
  padding={15}
+  readOnly
/>
clay53 commented 1 year ago

@clay53 https://codesandbox.io/embed/https-github-com-uiwjs-react-textarea-code-editor-issues-153-7694n4?fontsize=14&hidenavigation=1&theme=dark

<CodeEditor
  value={code}
  language="js"
  placeholder="Please enter JS code."
  padding={15}
+  readOnly
/>

Oh, thank you lol