Hi I have usecase of custom autocomplete in which suggestions are fetched from api by picking up the text from editor, and in that custom autocomplete my custom tooltips are also implemented , is it possible to achieve currently in v6?
Yes this is definitely possible â completion sources can be any asynchronous function, and can read the editor state. See the autocompletion examples for some more background.
@codemirror/autocomplete does not support overriding the rendering of the completion tooltip. Youâre going to have to work within its display logic if you want to use it.