Sorry for the simple question: How do I clear the doc? the entire text ?
Thank you
Sorry for the simple question: How do I clear the doc? the entire text ?
Thank you
I figured it
let transaction = view.state.update({
changes: {
from: 0,
to: view.state.doc.length,
insert: ''
}
});
view.dispatch(transaction);