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
September 12, 2014 08:43
PsiClass, PsiField and PsiMethod are historically bad class names, they come from early IntelliJ IDEA ages when it supported Java language only. You probably noticed that these classes are located ...
Community
IntelliJ IDEA Open API and Plugin Development
PSIFile.findElementAt(offset) returns HaxeFile(which extends PsiFileBase) instead of PsiElement instance
0 votes
Created
September 10, 2014 17:40
Only javadoc in Rearranger interface.Second implementation example is com.intellij.xml.arrangement.XmlRearranger.
Community
IntelliJ IDEA Open API and Plugin Development
Rearranger usage example
0 votes
Created
September 10, 2014 18:00
Clone IntelliJ IDEA Community Edition repo (git clone https://github.com/JetBrains/intellij-community) anywhere on the computer (it takes some time), open Sources tab of the Plugin SDK (Project Str...
Community
IntelliJ IDEA Open API and Plugin Development
Rearranger usage example
0 votes
Created
September 04, 2014 14:31
LocalFileSystem.getInstance().findFileByPath()You'll find more info in this article: http://confluence.jetbrains.com/display/IDEADEV/IntelliJ+IDEA+Architectural+Overview
Community
IntelliJ IDEA Open API and Plugin Development
how to read a file in the project by its path
0 votes
Created
August 28, 2014 17:14
No, annotator is not designed for additional long descriptions.
Community
IntelliJ IDEA Open API and Plugin Development
How to add description to Annotator?
0 votes
Created
August 28, 2014 14:45
Unfortunately Flex related API is not open source and you'll have to ask us each time when you need to find any Flex specific class/method name. First of all you have to add all JAR files from [IDE...
Community
IntelliJ IDEA Open API and Plugin Development
How to find MXML/ActionScript classes in plugin
0 votes
Created
December 01, 2014 13:56
You'll probably have only one action. Separator - as you like. Add to group - yes, you need it. One adds to editor popup, the other one - to the context menu in Project View. Skip the latter if you...
Community
IntelliJ IDEA Open API and Plugin Development
How to add items to a tab context menu?
0 votes
Created
December 01, 2014 14:07
Yes, follow 'IntelliJ IDEA Action System' link on the first page that you mentioned.
Community
IntelliJ IDEA Open API and Plugin Development
How to add items to a tab context menu?
0 votes
Created
November 27, 2014 12:15
To get VirtualFile by path use LocalFileSystem.getInstance().findFileByPath(). Or see this doc.Then call FileEditorManager.getInstance(project).openFile(file, true);
Community
IntelliJ IDEA Open API and Plugin Development
How do I open a file if I have the path to it in the project?
0 votes
Created
October 06, 2015 17:43
First of all make sure you understand IntelliJ IDEA project structure. There's no such thing as workspace and also unlikely you need to work with more than one project simultaneously. See https://w...
Community
IntelliJ IDEA Open API and Plugin Development
How traverse through project in IntelliJ?
0 votes
«
First
‹
Previous
Next
›
Last
»