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 30, 2014 12:05
Put your action into a new group like this: <group id="MyCustomGroup" text="My Custom Group" popup="true"> <action id="MyCustomAction" text="My Custom Action" ...
Community
IntelliJ IDEA Open API and Plugin Development
How to add sub-menu group on "Help" menu?
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
Created
August 19, 2014 09:49
From what I understand You rather need to use PsiFile (XmlFile in Your case) than VirtualFile - you expect to receive up to date file content for merging, but Vitural File could not be up to date, ...
Community
IntelliJ IDEA Open API and Plugin Development
How to work with intellij Project tree objects
0 votes
Created
August 06, 2014 09:45
project.getMessageBus().syncPublisher(Notifications.TOPIC).notify(new Notification(groupDisplayId, title, content, NotificationType.INFORMATION))
Community
IntelliJ IDEA Open API and Plugin Development
How to Create ToolTip(Hint)
0 votes
Created
August 28, 2014 20:50
Yes, it is ok. I found that I need register addidtional tipAndTrick extension for every feature I registered in my productivityFeaturesProvider (this fix the problem), but I do not understand for w...
Community
IntelliJ IDEA Open API and Plugin Development
Productivity Hints?
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
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
April 03, 2015 08:24
Workaround: public void actionPerformed(AnActionEvent e) { final FileBasedIndex fileBasedIndex = FileBasedIndex.getInstance(); fileBasedIndex.scheduleRebuild(IndexA.ID, new Throw...
Community
IntelliJ IDEA Open API and Plugin Development
How to rebuild index on demand?
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 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
«
First
‹
Previous