主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Peter Gromov
活动总数
2258
最后的活动
2023年05月09日 12:44
成员加入日期
2008年07月25日 18:59
关注
0 名用户
关注者数
1 名用户
投票数
0
订阅数
739
活动概览
文章(0)
帖子(3)
评论(1516)
按最近的活动排序
最近的活动
投票数
创建于
2015年04月16日 07:05
It's not the latest IDEA 14.0.x, is it? (line numbers don't seem to match) Which IDEA build are you running your plugin in? Or, what's in "ChangeUtil.java:91" line in that version?
社区
IntelliJ IDEA Open API and Plugin Development
Adding DOM Elements to XML file
0 票
创建于
2015年08月06日 09:45
Which prefix is in CompletionResultSet.getPrefixMatcher().getPrefix() when you provide your completion variants in the completion contributor?
社区
IntelliJ IDEA Open API and Plugin Development
Autocomplete suggestion at wrong caret position
0 票
创建于
2015年08月03日 12:05
To avoid IDE freezing, completion thread must not perform any blocking calls, and should call ProgressManager.checkCanceled often enough (e.g. every 50ms). You can start another thread, wait for th...
社区
IntelliJ IDEA Open API and Plugin Development
How to create an auto complete text field which adds items async?
0 票
创建于
2015年07月24日 05:47
That's true that PSI changes should result in the same tree structure as if the document was completely reparsed with the new text. So, in your case, modifications via document seem reasonable. Aft...
社区
IntelliJ IDEA Open API and Plugin Development
Quickfix: Warnings don't (always) vanish when "Fix all for file" is called
0 票
创建于
2015年09月24日 08:25
There's no "proper" way, it's up to you to devise an efficient algorithm taking into account the language rules. Normally some kind of caching for each intermediate file helps. See PsiJavaFileBaseI...
社区
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 票
创建于
2015年10月01日 09:27
As the message says, there are too many range markers registered for the same interval. You can try to debug who creates them and why there are so many of them. Then you can either reuse them, or d...
社区
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 票
创建于
2015年10月05日 11:44
HighlightUsagesHandler#getUsageTargets already uses multiResolve. Do you mean some other kind of highlighting?
社区
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 票
创建于
2015年05月20日 14:20
Sorry, I don't understand the question. In general, you should implement CompletionContributor where you have access to the whole PSI tree. This class also has an extensive javadoc about completion.
社区
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 票
创建于
2015年05月24日 07:22
I'm not sure I understand the difference between declaration and definition. If it's like in C header files, then you'd have to have references from usages to either declaration or definition (what...
社区
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 票
创建于
2015年05月24日 16:37
No, to achieve that you should have separate tokens.
社区
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 票
«
第一页
‹
上一页
下一页
›
最后
»