I am implementing a formula editor and need to have automatic completion, so I chose codeMirror. But I want to highly customize the style of autocomplete and bind some events to achieve the effect of cascading components, as shown in the following picture. Can I do this with “@codemirror/autocomplete”
Probably not. @codemirror/autocomplete is rather specialized for classical code editor completion style. It looks like you’re trying to do something hierarchical there, which it definitely doesn’t support.