[Help] Show autocomplete info panel on hover

I am trying to show the info panel of the autocomplete list while hovering, Currently, the info panel only shows when selecting/navigating the options using the keyboard arrow keys.

import {CompletionContext} from "@codemirror/autocomplete"

function myCompletions(context: CompletionContext) {
  let word = context.matchBefore(/\w*/)
  if (word.from == word.to && !context.explicit)
    return null
  return {
    from: word.from,
    options: [
      {label: "match", type: "keyword"},
      {label: "hello", type: "variable", info: "(World)"},
      {label: "magic", type: "text", apply: "⠁⭒*.✩.*⭒⠁", detail: "macro"}
    ]
  }
}

Hey! I’m just bumping this up — I’m still looking for help.

I’d like to show the info panel on hover in the autocomplete list, but currently, it only shows when navigating with the keyboard arrow keys. I would really appreciate any guidance or a pointer in the right direction!

Thanks in advance :folded_hands: