-
-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to achieve editorDidMount functionality #675
Comments
react-codemirror/core/src/index.tsx Lines 63 to 64 in 3b02cab
@IntelligaiaVivek I think you can use |
@jaywcjlove Thanks will check for this and i also need to maintain the undo redo state for the editor can you show which option to add for that. Appreciate for your response |
The history feature can be enabled via a prop, and it is enabled by default. If you need to manage the history yourself, you should use history and disable the default
import { history, redo, undo, historyKeymap } from "@codemirror/commands";
<CodeMirror
extensions={[history(config: { joinToEvent:() => { /*....*/} })]}
basicSetup={{
history: false,
}}
/> |
@jaywcjlove
When the CodeMirror editor is mounted (i.e., initialized). It takes an _editorReference parameter like in codemirror2
same i need this here in @uiw/code-mirror , so it can perform custom initialization tasks when the editor is mounted, and also ensure that the editor is properly configured
so i can use this _editorReferenece state
const editorDidMount = (_editorReferenece: Editor) => {
}
and this _editorReferenece give like this
Appreciate your response
The text was updated successfully, but these errors were encountered: