主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
简体中文
English (United States)
登录
Sindhwaniparas
活动总数
7
最后的活动
2020年06月26日 12:23
成员加入日期
2020年06月25日 19:07
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
1
活动概览
帖子(1)
评论(5)
按最近的活动排序
最近的活动
投票数
创建于
2020年06月26日 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...
社区
IntelliJ IDEA Open API and Plugin Development
display completions in plugin
0 票
创建于
2020年06月26日 11:20
Thanks, Jakub public class CompletionContributor extends com.intellij.codeInsight.completion.CompletionContributor { public CompletionContributor() { extend( CompletionType.BASIC, ...
社区
IntelliJ IDEA Open API and Plugin Development
display completions in plugin
0 票
创建于
2020年06月26日 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...
社区
IntelliJ IDEA Open API and Plugin Development
display completions in plugin
0 票
已编辑于
2020年06月26日 08:06
This is what I did. <extensions defaultExtensionNs="com.intellij"> <!-- Add your extensions here --> <completion.contributor language="any" implementationClass="com.completions.CompletionCont...
社区
IntelliJ IDEA Open API and Plugin Development
display completions in plugin
0 票
已编辑于
2020年06月26日 05:29
Thanks Jakub!! I am already using that article. extend( CompletionType.BASIC, PlatformPatterns.psiElement(), new CompletionProvider<CompletionParameters>() { public void ad...
社区
IntelliJ IDEA Open API and Plugin Development
display completions in plugin
0 票