```val lookupElement = LookupElementBuilder.create...
# intellij-plugins
h
Copy code
val lookupElement = LookupElementBuilder.create(stageNumber)
    .withIcon(icon)
    .withTailText(": " + stageName)
    .withTypeText("Stage")
    .bold()

// TODO: LookupElement can not be rendered in Kotlin
result.addElement(
    PrioritizedLookupElement.withPriority(lookupElement, priority - index)
)