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 11, 2014 13:42
I removed dataKey HPP_CHECKLIST_CONFIGURATION_CREDITING_ITEMS from my file:2014-04-11 14:35:28,111 [ 809073] INFO - DataIndexerWithInputFilterBase - Starting reindexing for file HPP_2_Pola.csv 20...
Community
IntelliJ IDEA Open API and Plugin Development
How to trigger GeneralHighlightingPass operations after file based indexing process?
0 votes
Created
April 16, 2014 14:49
It is a bug in Intellij IDEA or I do something wrong? Could someone help me with this?
Community
IntelliJ IDEA Open API and Plugin Development
How to trigger GeneralHighlightingPass operations after file based indexing process?
0 votes
Created
May 19, 2014 15:10
Workaround for reindexing with proper file content:public class PluginStartupActivity implements StartupActivity { @Override public void runActivity(Project project) { project.getMe...
Community
IntelliJ IDEA Open API and Plugin Development
How to trigger GeneralHighlightingPass operations after file based indexing process?
0 votes
Created
May 21, 2014 13:18
I change my indexing code to use com.intellij.util.indexing.FileContent#getContentAsText for receieving file content and it fix my problem. Thanks for helpful advice.
Community
IntelliJ IDEA Open API and Plugin Development
How to trigger GeneralHighlightingPass operations after file based indexing process?
0 votes
Created
April 25, 2014 10:03
Add <depends>org.jetbrains.android</depends> to your plugin descriptor. See also http://devnet.jetbrains.com/message/5502539
Community
IntelliJ IDEA Open API and Plugin Development
How to get Manifest of an Android module...
0 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
«
First
‹
Previous
Next
›
Last
»