主页
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)
按最近的活动排序
最近的活动
投票数
创建于
2013年11月21日 09:02
Please attach sources for this jar (taken from IntelliJ IDEA Community Edition released at the same time, http://www.jetbrains.org/display/IJOS/Download) and put a breakpoint there.
社区
IntelliJ IDEA Open API and Plugin Development
I want to add completion with no annotations.
0 票
创建于
2013年11月21日 09:44
Thanks. The solution for your contributor would be to be executed before PhpCompletionContributor. For this, just add order="first" to the completion.contributor tag in plugin.xml
社区
IntelliJ IDEA Open API and Plugin Development
I want to add completion with no annotations.
0 票
创建于
2014年01月09日 17:06
You can implement FileDocumentManagerListener and listen to save events using project/application.getMessageBus().connect().subscribe(AppTopics.FILE_DOCUMENT_SYNC, listener)
社区
IntelliJ IDEA Open API and Plugin Development
How can i intercept the Save All action?
0 票
创建于
2014年01月07日 12:46
No, line comment action is not supposed to trigger this event, and it doesn't for me. If it does for you, please provide a stack trace when this event occurs.
社区
IntelliJ IDEA Open API and Plugin Development
contentsChanged vs beforeContentsChange
0 票
创建于
2014年02月24日 14:47
You're right, everything might be a bit inconsistent inside event handlers. The usual approach to such issues is to make the event handlers just do something very simple, like invalidating caches a...
社区
IntelliJ IDEA Open API and Plugin Development
JavaPsiFacade.findClass() starts returning null after rootsChanged event
0 票
创建于
2014年02月25日 09:58
ResolveResult.getElement being null is a completely normal situation. If you have a reference with an undefined name and call advancedResolve on it, you'll get JavaResolveResult.EMPTY which returns...
社区
IntelliJ IDEA Open API and Plugin Development
why would psielement . geparent return null?
0 票
创建于
2014年02月24日 14:49
DataKeys class is IntelliJ IDEA-specific, you should be able to use LangDataKeys or PlatformDataKeys instead.
社区
IntelliJ IDEA Open API and Plugin Development
DataKeys class not found in PhpStorm
0 票
创建于
2014年02月24日 14:41
There's no such way currently.
社区
IntelliJ IDEA Open API and Plugin Development
HighLighting in CodeFolding
0 票
创建于
2014年05月07日 13:02
The easiest way is to implement getVariants in your reference and return LookupElement[] from it.If your completion might take a long time or you need some advanced stuff, you can implement Complet...
社区
IntelliJ IDEA Open API and Plugin Development
Provide completion from my language to another
0 票
创建于
2014年05月07日 18:18
I wouldn't call it a bad decision, it helps tremendously when writing completion stuff. :)You may probably check !(FileDocumentManager.getFile(document) instanceof LightVirtualFile)
社区
IntelliJ IDEA Open API and Plugin Development
Cannot capture file changes from refactorings
0 票
«
第一页
‹
上一页
下一页
›
最后
»