LookupElementBuilder
Answered
I want to use LookupElementBuilder to build a LookupElement with a list of 5 hardcoded strings. What API would I use to then display this in the popup?(like a completion)? (Java language)
Please sign in to leave a comment.
Could I use LookupManager?
Nevermind, got it to work with
LookupManager.getInstance(project).showLookup(editor,LookupElementBuilder.create("hi"));