Text Field with Standard PsiElement Auto Completion in IntelliJ Plugin
问题 I'm trying to create a simple text field with auto completion for my IntelliJ plugin. I think this should be pretty simple but so far I've run into dead ends... E.g. this should work as far as I understand: EditorTextField format = new TextFieldWithCompletion(currentEditor.getProject(), provider, "", true, true, true); The problem is the provider. I'd expect to see a provider that isn't a list provider. I just want to show the completion matching the current line in the editor cursor so I'd