主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Yann Cebron
活动总数
8231
最后的活动
2025年04月23日 09:06
成员加入日期
2003年04月16日 11:50
关注
0 名用户
关注者数
2 名用户
投票数
21
订阅数
3314
活动概览
帖子(120)
评论(4776)
按最近的活动排序
最近的活动
投票数
创建于
2015年12月18日 17:58
Good catch, will fix it. Thanks!
社区
IntelliJ IDEA Open API and Plugin Development
Flex-based lexer hits invalid text range while building file-based index
0 票
创建于
2015年11月26日 08:02
If you perform any write operations in your intention (most probably you do) you'll be responsible to wrap them in corresponding WriteAction yourself now. see http://www.jetbrains.org/intellij/sdk/...
社区
IntelliJ IDEA Open API and Plugin Development
Use TextFieldWithAutoCompletion inside Intention
0 票
创建于
2016年01月08日 08:59
If you're fine creating all the necessary run configurations manually (I assume this is a one-time setup cost), you can use Compound Run Configuration to run a series of run configurations.https://...
社区
IntelliJ IDEA Open API and Plugin Development
Access to or creation of Run Configurations in a plugin
0 票
创建于
2015年12月21日 16:16
Make sure compiler copies *.png files and/or your deployment process includes your resources folder
社区
IntelliJ IDEA Open API and Plugin Development
plugin does not find the png files
0 票
创建于
2015年12月17日 15:10
com.intellij.psi.PsiClass#getContainingClass, then com.intellij.psi.util.InheritanceUtil#isInheritor(com.intellij.psi.PsiClass, java.lang.String)
社区
IntelliJ IDEA Open API and Plugin Development
How to get current class's parent class, parent parent class
0 票
创建于
2015年12月17日 15:47
What is the invocation context of your code?
社区
IntelliJ IDEA Open API and Plugin Development
How to get current class's parent class, parent parent class
0 票
创建于
2015年12月18日 07:03
No, I mean in what place of your plugin's code: highlighting, intention, action, ...?
社区
IntelliJ IDEA Open API and Plugin Development
How to get current class's parent class, parent parent class
0 票
创建于
2015年12月21日 08:31
Something like @Override public void actionPerformed(AnActionEvent e) { DataContext dataContext = e.getDataContext(); PsiElement element = CommonDataKeys.PSI_ELEMENT.getData(dataContext); ...
社区
IntelliJ IDEA Open API and Plugin Development
How to get current class's parent class, parent parent class
0 票
创建于
2015年12月21日 14:09
Please do not use this solution, here's an improved version of my previous one working in more places: final Editor editor = e.getData(CommonDataKeys.EDITOR); if (editor != null) { ...
社区
IntelliJ IDEA Open API and Plugin Development
How to get current class's parent class, parent parent class
0 票
创建于
2015年12月18日 17:22
FTR this has been explicitly described in the javadoc as well/** * Gets the word scanner for building a word index for the specified language. * Note that the implementation MUST be thread-safe, ot...
社区
IntelliJ IDEA Open API and Plugin Development
Flex-based lexer hits invalid text range while building file-based index
0 票
«
第一页
‹
上一页
下一页
›
最后
»