Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
English (United States)
简体中文
Sign in
Sindhwaniparas
Total activity
7
Last activity
June 26, 2020 12:23
Member since
June 25, 2020 19:07
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
1
Activity overview
Posts (1)
Comments (5)
Sort by recent activity
Recent activity
Votes
Created
June 26, 2020 12:23
Thanks, Jakub Yes, it is working perfectly on your system. I think there is some system-specific problem. I will try to look for it. Just one last thing. Can you tell me if there is any problem wit...
Community
IntelliJ IDEA Open API and Plugin Development
display completions in plugin
0 votes
Created
June 26, 2020 11:20
Thanks, Jakub public class CompletionContributor extends com.intellij.codeInsight.completion.CompletionContributor { public CompletionContributor() { extend( CompletionType.BASIC, ...
Community
IntelliJ IDEA Open API and Plugin Development
display completions in plugin
0 votes
Created
June 26, 2020 08:36
Thanks Jakub it does not stop in addCompletions method. I am able to get multiple completions in a single line in a JS file like this and these completions are displayed automatically when I star...
Community
IntelliJ IDEA Open API and Plugin Development
display completions in plugin
0 votes
Edited
June 26, 2020 08:06
This is what I did. <extensions defaultExtensionNs="com.intellij"> <!-- Add your extensions here --> <completion.contributor language="any" implementationClass="com.completions.CompletionCont...
Community
IntelliJ IDEA Open API and Plugin Development
display completions in plugin
0 votes
Edited
June 26, 2020 05:29
Thanks Jakub!! I am already using that article. extend( CompletionType.BASIC, PlatformPatterns.psiElement(), new CompletionProvider<CompletionParameters>() { public void ad...
Community
IntelliJ IDEA Open API and Plugin Development
display completions in plugin
0 votes