Im using the React CodeMirror component and implemented anything from the tut.
<CodeMirror
theme={"dark"}
extensions={[
javascript(),
autocompletion(),
javascriptLanguage.data.of({
autocomplete: myCompletions
})]}
onChange={onChange} />
But when i type something like “setTi” a javascript code suggestions doesn’t appear.
What am i doing wrong or am i missing sth?