If i type any quote, CodeMirror automatically inserts another quote.
I want to disable it.
I can’t do it with the code below.
How can I fix this code?
javascriprt
const editView = new EditorView({
state: EditorState.create({
doc: value,
extensions: [
basicSetup,
javascript(),
autocompletion({
activateOnTyping: false,
defaultKeymap: false
}),
],
}),
parent: node,
});