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 18, 2014 12:52
Ok, I add following code to my com.intellij.openapi.application.QueryExecutorBase#processQuery implementation:final SearchScope searchScope = queryParameters.getEffectiveSearchScope();boolean consu...
Community
IntelliJ IDEA Open API and Plugin Development
How works usages highlighting in file? Problem with YAML
0 votes
Created
April 11, 2014 12:57
Maybe try do this after each insertString:PsiDocumentManager.getInstance(project).commitDocument(document);
Community
IntelliJ IDEA Open API and Plugin Development
When are document inserts written to screen?
0 votes
Created
April 14, 2014 08:23
Okay, problem looks like this:1. I open my indexed plain text file and json file2. Remove some line from text file3. Switch selected editor to json file4. IDEA starts indexing plain text file but w...
Community
IntelliJ IDEA Open API and Plugin Development
How to trigger GeneralHighlightingPass operations after file based indexing process?
0 votes
Created
April 25, 2014 12:49
Maybe this help:com.intellij.ProjectTopics#MODULESandpublic interface com.intellij.openapi.project.ModuleListener extends EventListener { void moduleAdded(Project project, Module module); void ...
Community
IntelliJ IDEA Open API and Plugin Development
New/Removed Module events
0 votes
Created
May 27, 2014 12:20
If You want find files, you could also use:com.intellij.psi.search.FilenameIndex#getFilesByName for searching for PsiFilesFilenameIndex.getFilesByName(project, fileName, searchScope);orcom.intellij...
Community
IntelliJ IDEA Open API and Plugin Development
How to find file in project ?
0 votes
Created
August 07, 2014 09:45
Maybe try what Dimitry suggests here:http://devnet.jetbrains.com/message/5521245#5521245
Community
IntelliJ IDEA Open API and Plugin Development
Files generation (e.g. java files) to source root folders via an external builder
0 votes
Created
August 12, 2014 12:45
Normally You need only to register your own com.intellij.openapi.module.ModuleType with com.intellij.ide.util.projectWizard.ModuleBuilder. When do You want to create Your module programmatically? O...
Community
IntelliJ IDEA Open API and Plugin Development
Creating new Modules
0 votes
Created
August 12, 2014 13:16
You probably need to use this: com.intellij.ide.util.projectWizard.ModuleBuilder#createModule, but I never used this myself. Refer also com.intellij.openapi.roots.ui.configuration.ModulesConfigurat...
Community
IntelliJ IDEA Open API and Plugin Development
Creating new Modules
0 votes
Created
August 06, 2014 12:41
Use for example New > Action for that - in dialog You have listed groups and actions (see attachments)Attachment(s):scr2.pngscr.png
Community
IntelliJ IDEA Open API and Plugin Development
plugin.xml - <add-to-group .. /> attributes ?
0 votes
Created
August 04, 2014 13:36
Can You post an example of what You are trying to achieve (with expected result)? I'm not sure what do You wan't to receive - classes imported by given file/class?
Community
IntelliJ IDEA Open API and Plugin Development
Get ClassPath Information in Project Window
0 votes
«
First
‹
Previous
Next
›
Last
»