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
April 25, 2014 10:14
Try this: final AndroidFacet facet = FacetManager.getInstance(module).getFacetsByType(AndroidFacet.ID); final VirtualFile manifestFile = AndroidRootUtil.getManifestFile(facet); if ...
Community
IntelliJ IDEA Open API and Plugin Development
How to get Manifest of an Android module...
0 votes
Created
August 06, 2014 10:28
<add-to-group group-id="someGroupId" relative-to-action="someActionId" anchor="first/last/before someActionOrGroupId/after someActionOrGroupId"/>
Community
IntelliJ IDEA Open API and Plugin Development
plugin.xml - <add-to-group .. /> attributes ?
0 votes
Created
August 06, 2014 09:49
If You want to replace default editor, You can implement com.intellij.openapi.fileEditor.FileEditorProvider interface and override com.intellij.openapi.fileEditor.FileEditorProvider#getPolicy as fo...
Community
IntelliJ IDEA Open API and Plugin Development
intercepting file open operation
0 votes
Created
August 01, 2014 12:27
You can extend com.intellij.ide.util.projectWizard.ModuleBuilder and override following method like this: @Nullable @Override public ModuleWizardStep modifySettingsStep(@NotNull Settings...
Community
IntelliJ IDEA Open API and Plugin Development
Setting jdk while project creation
0 votes
Created
July 31, 2014 07:20
Probably Your ToolWindowFactory class needs to implement com.intellij.openapi.project.DumbAware (see documentation of this interface for details).
Community
IntelliJ IDEA Open API and Plugin Development
Tool window closes on re-index
0 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
«
First
‹
Previous
Next
›
Last
»