react-codemirror
react-codemirror copied to clipboard
Is there a way to auto wrap when the text is reaching the maxWidth?
Is there a way to auto wrap when the text is reaching the maxWidth?
You need to seek answers here: https://codemirror.net/6/ @EmbedConner
@EmbedConner you need to install @codemirror/view
and add it as extension.
import { EditorView } from "@codemirror/view";
function MyComponent() {
return (
<CodeMirror value={"Code here"} extensions={[EditorView.lineWrapping]} />
);
}
Thank you very much!