Home
IDEs Support (IntelliJ Platform) | JetBrains
Submit a request
Community
Sign in
Marcin Rembała
Total activity
115
Last activity
July 13, 2023 12:03
Member since
December 10, 2012 15:14
Following
0 users
Followed by
0 users
Votes
1
Subscriptions
44
Activity overview
Posts (15)
Comments (55)
Sort by recent activity
Recent activity
Votes
Created
April 03, 2015 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to rebuild index on demand?
0 votes
Created
March 13, 2015 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...
Community
IntelliJ IDEA Open API and Plugin Development
Problem with module search scopes
0 votes
Created
March 13, 2015 14:19
You could use this method:PsiDirectory rootDir = com.intellij.psi.util.ClassUtil.sourceRoot(packageDir);
Community
IntelliJ IDEA Open API and Plugin Development
Package selection and path extraction
0 votes
Created
March 12, 2015 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...
Community
IntelliJ IDEA Open API and Plugin Development
Problem with module search scopes
0 votes
Created
March 10, 2015 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...
Community
IntelliJ IDEA Open API and Plugin Development
Groovy injection into YAMLScalarList
0 votes
Created
December 05, 2014 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to trigger highlighter in selected parts of a document
0 votes
Created
December 03, 2014 10:47
Probably You need to use this: com.intellij.codeInsight.daemon.DaemonCodeAnalyzer.restart(psiFile)or referer its implementation.
Community
IntelliJ IDEA Open API and Plugin Development
How to trigger highlighter in selected parts of a document
0 votes
Created
December 03, 2014 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to add items to the TODO panel
0 votes
Created
December 01, 2014 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to add items to the TODO panel
0 votes
Created
September 02, 2014 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...
Community
IntelliJ IDEA Open API and Plugin Development
Navigation from usage to declaration for custom language
0 votes
«
First
‹
Previous
Next
›
Last
»