Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Alexander Doroshko
Total activity
2479
Last activity
November 15, 2024 18:36
Member since
June 09, 2009 09:45
Following
0 users
Followed by
1 user
Votes
0
Subscriptions
851
Activity overview
Articles (0)
Posts (0)
Comments (1628)
Sort by recent activity
Recent activity
Votes
Created
April 29, 2013 12:27
No, I didn't.Try alexander dot doroshko at gmail.
Community
IntelliJ IDEA Open API and Plugin Development
Combined Module Root detection
0 votes
Created
April 29, 2013 12:44
Got it.
Community
IntelliJ IDEA Open API and Plugin Development
Combined Module Root detection
0 votes
Created
October 14, 2013 12:34
org.jetbrains.idea.maven.project.MavenProjectsManager#isMavenizedModule(final Module m);To find such util methods you can use Navigate | Symbol... and try to guess the method name. You'd find the a...
Community
IntelliJ IDEA Open API and Plugin Development
Detect if module is a maven module
0 votes
Created
October 09, 2013 13:35
No, you should have different branches of the plugin for different branches of IntelliJ IDEA.
Community
IntelliJ IDEA Open API and Plugin Development
how to make a plugin available to another plugin for extension
0 votes
Created
November 08, 2013 12:22
See ProjectLibraryTable class.
Community
IntelliJ IDEA Open API and Plugin Development
How to remove Library from Libraries section of project structure
0 votes
Created
December 16, 2013 11:10
I guess the Grammar-kit doesn't create the lexer.java.It does. The action is in the context menu of *.flex file. Default shortcut is Ctrl+Shift+G on Windows or Meta+Shift+G on Mac.
Community
IntelliJ IDEA Open API and Plugin Development
disable external build or new way to build lexer
0 votes
Created
December 17, 2013 12:03
Yes, all project-level components and services are handled correctly, so they can have Project field. Note that services are preferred to components because they have lazy initialization.
Community
IntelliJ IDEA Open API and Plugin Development
Already disposed, I am getting this assertion error
0 votes
Created
February 06, 2014 06:52
The best way is to use standard IntelliJ logging mechanism:import com.intellij.openapi.diagnostic.Logger;private static final Logger LOG = Logger.getInstance(YourClass.class.getName());LOG.xxx(...)...
Community
IntelliJ IDEA Open API and Plugin Development
Programmatically retrieve folder locations
0 votes
Created
February 06, 2014 07:15
Is your question related to the IDE?System temp folder seems to be the best: com.intellij.openapi.util.io.FileUtil.getTempDirectory(). See also other methods of FileUtil class.
Community
IntelliJ IDEA Open API and Plugin Development
Programmatically retrieve folder locations
0 votes
Created
February 12, 2014 16:06
'Empty project' mode doesn't create any module, it only creates absolutely empty project indeed, that's why it doesn't have module-related questions.
Community
IntelliJ IDEA Open API and Plugin Development
Hide more settings in new project wizard
0 votes
«
First
‹
Previous
Next
›
Last
»