Home
IDEs Support (IntelliJ Platform) | JetBrains
Submit a request
Community
Sign in
Alexei Orishchenko
Follow
New posts
New posts and comments
Total activity
178
Last activity
January 17, 2016 15:27
Member since
October 13, 2005 12:03
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
69
Activity overview
Posts (44)
Comments (65)
Sort by recent activity
Recent activity
Votes
Created
February 05, 2008 15:46
Is it possible to add my seach results (to usages found by Idea)?I can find references to a Java class or method from HTML template myself. So I need an extension point to return my search results.
Community
IntelliJ IDEA Open API and Plugin Development
Find usages: injected language
0 votes
Created
November 27, 2007 10:38
Is it possible to define listener for Save action in IntelliJ?Catching save events:File system listener:
Community
IntelliJ IDEA Open API and Plugin Development
Listener for file changes.
0 votes
Created
November 21, 2007 11:05
Try this
Community
IntelliJ IDEA Open API and Plugin Development
Getting VirtualFile object.
0 votes
Created
November 19, 2007 10:54
Community
IntelliJ IDEA Open API and Plugin Development
Getting the module/project JDK library
0 votes
Created
November 17, 2007 10:19
You should register file type for using custom lexer and parser. The IDE uses the registered file type in both cases.Get PSI tree without opening file in the editor:
Community
IntelliJ IDEA Open API and Plugin Development
Opening file without opening an editor
0 votes
Created
November 08, 2007 16:16
The portable between IDEA 6 and 7 way to get the toplevel file is to check the getContext() for the PsiFile element:if (psiFile.getContext() != null) psiFile = psiFile.getContext().getContainingFi...
Community
IntelliJ IDEA Open API and Plugin Development
VirtualFileDelegate question
0 votes
Created
November 07, 2007 16:20
PsiElement from Annotator --> VirtualFile (element.getOriginalElement().getContainingFile())Idea 6.0.5
Community
IntelliJ IDEA Open API and Plugin Development
VirtualFileDelegate question
0 votes
Created
November 07, 2007 15:15
The problem is the VirtualFileDelegate.getPath() method doesn't return full path. So if file is VirtualFileDelegate instance then I get real virtual file through the getDelegate() method (this meth...
Community
IntelliJ IDEA Open API and Plugin Development
VirtualFileDelegate question
0 votes
Created
August 28, 2007 11:23
Why do you use VirtualFile.getInputStream() rather than XmlFile.getText()?This fixes the problem.Related question: Does Idea use PsiFile instances as cache (i.e. only one PsiFile in memory exists f...
Community
IntelliJ IDEA Open API and Plugin Development
Action doesn't see changes in xml file
0 votes
Created
August 07, 2007 09:31
I can change class name but how to move the class to another package? Remove from the current package and add to another?
Community
IntelliJ IDEA Open API and Plugin Development
How to rename a class?
0 votes
«
‹
1
2
3
4
5
6
7
›
»