Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Marcin R
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
July 31, 2014 15:00
Icon probably comes from com.intellij.navigation.NavigationItem#getPresentation -> com.intellij.navigation.ItemPresentation#getIcon (implemented by target of reference). Most likely You need to dec...
Community
IntelliJ IDEA Open API and Plugin Development
PsiReferences and Icons
0 votes
Created
July 31, 2014 07:22
See com.intellij.refactoring.changeSignature.ChangeSignatureDialogBase and subclasses
Community
IntelliJ IDEA Open API and Plugin Development
Dialog for method parameters
0 votes
Created
July 30, 2014 12:37
Maybe completion expects to recieve lookup elements with name starting with "... ?
Community
IntelliJ IDEA Open API and Plugin Development
Compeletion provider not working properly
0 votes
Created
July 30, 2014 11:55
final Module module = ModuleUtil.findModuleForFile(virtualFile, project);If file does not belong to any module in given project, then You will recieve null.
Community
IntelliJ IDEA Open API and Plugin Development
how to find the Module of a VirtualFile?
0 votes
Created
August 19, 2014 09:04
Did You try to register your contributor without language attribute?BTW - remember, language ID is case sensitive.
Community
IntelliJ IDEA Open API and Plugin Development
How to add a PsiReferenceContributor for an existing language?
0 votes
Created
August 25, 2014 10:33
Lately I've added some productivity tips and put some html files with description into tips directory in my plugin - it's working for IDEA 12.1.7 but in 13.1.4 Productivity Guide only says: Unable ...
Community
IntelliJ IDEA Open API and Plugin Development
Productivity Hints?
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 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
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
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
«
First
‹
Previous
Next
›
Last
»