主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Marcin Rembała
活动总数
115
最后的活动
2023年07月13日 12:03
成员加入日期
2012年12月10日 15:14
关注
0 名用户
关注者数
0 名用户
投票数
1
订阅数
44
活动概览
帖子(15)
评论(55)
按最近的活动排序
最近的活动
投票数
创建于
2015年04月03日 07:52
Yes, accessing index triggers index rebuild. Also changing com.intellij.util.indexing.FileBasedIndex#requestRebuild to com.intellij.util.indexing.FileBasedIndex#scheduleRebuild do the trick. But in...
社区
IntelliJ IDEA Open API and Plugin Development
How to rebuild index on demand?
0 票
创建于
2015年03月13日 19:48
For example Maven module has following structure: pom.xml in root directory of module src/main/java marked as source root src/main/resources as source resources root src/test/java marked as test r...
社区
IntelliJ IDEA Open API and Plugin Development
Problem with module search scopes
0 票
创建于
2015年03月13日 14:19
You could use this method:PsiDirectory rootDir = com.intellij.psi.util.ClassUtil.sourceRoot(packageDir);
社区
IntelliJ IDEA Open API and Plugin Development
Package selection and path extraction
0 票
创建于
2015年03月12日 09:17
Ok, it looks like getModuleContentWithDependenciesScope method includes all directories and files from given module, but all other mentioned methods uses just content roots of this module, am I rig...
社区
IntelliJ IDEA Open API and Plugin Development
Problem with module search scopes
0 票
创建于
2015年03月10日 15:29
Ok, I've added EnterHandlerDelegate to block DoEnter action for Groovy injection - DoEnter for Yaml is sufficient (it looks like this action is triggered in YAML file and Groovy file which is creat...
社区
IntelliJ IDEA Open API and Plugin Development
Groovy injection into YAMLScalarList
0 票
创建于
2014年12月05日 13:31
You use TextEditorHighlightingPass for that? If You want to remove highlighting for some text range that is already highlighted, You need to apply text attribute for that range - com.intellij.opena...
社区
IntelliJ IDEA Open API and Plugin Development
How to trigger highlighter in selected parts of a document
0 票
创建于
2014年12月03日 10:47
Probably You need to use this: com.intellij.codeInsight.daemon.DaemonCodeAnalyzer.restart(psiFile)or referer its implementation.
社区
IntelliJ IDEA Open API and Plugin Development
How to trigger highlighter in selected parts of a document
0 票
创建于
2014年12月03日 10:37
Are You sure that your plugin is up to date while you are debugging it? Did You try to refresh indices (File > Invalidate caches)? I'm pretty sure that this should collect every todo/fixme phrase i...
社区
IntelliJ IDEA Open API and Plugin Development
How to add items to the TODO panel
0 票
创建于
2014年12月01日 12:12
Try to use this as todoIndexer implementation (just for checking) for your file type:implementationClass="com.intellij.psi.impl.cache.impl.id.PlatformIdTableBuilding$PlainTextTodoIndexer"This shoul...
社区
IntelliJ IDEA Open API and Plugin Development
How to add items to the TODO panel
0 票
创建于
2014年09月02日 07:24
You need to override getReference or getReferences method, because default implementation of getReference in PsiElementBase, which is base class of ASTWrapperPsiElement, returns null, so You cannot...
社区
IntelliJ IDEA Open API and Plugin Development
Navigation from usage to declaration for custom language
0 票
«
第一页
‹
上一页
下一页
›
最后
»