Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Alexander Zolotov
Total activity
721
Last activity
November 01, 2023 08:52
Member since
April 05, 2011 22:39
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
241
Activity overview
Articles (0)
Posts (0)
Comments (480)
Sort by recent activity
Recent activity
Votes
Created
February 17, 2016 15:49
You can create XML psi element with com.intellij.psi.XmlElementFactory. Also you can use Document instead in order to manipulate with text.
Community
IntelliJ IDEA Open API and Plugin Development
How to add new XmlTextImpl
0 votes
Created
April 22, 2013 08:22
Try add 'order' attribute: <com.intellij.css.elementDescriptionProvider implementation="randori.plugin.lang.css.RandoriCssElementDescriptorProvider" order="first"/>
Community
IntelliJ IDEA Open API and Plugin Development
Adding CSS properties programmatically to register them as valid
0 votes
Created
April 22, 2013 09:16
Hi Roland,Could you push your changes in some custom branch at https://github.com/RandoriAS/randori-plugin-intellij. I'll try figure out what happens.
Community
IntelliJ IDEA Open API and Plugin Development
Adding CSS properties programmatically to register them as valid
0 votes
Created
April 22, 2013 19:47
Yes, PsiElement#getProject() is the right way. You are welcome. Feel free to ask something else about api, I'll try to help.
Community
IntelliJ IDEA Open API and Plugin Development
Adding CSS properties programmatically to register them as valid
0 votes
Created
April 07, 2014 19:35
VirtualFile file = yourPsiClass.getContainingFile().getOriginalFile().getVirtualFile(); if (file != null && file.isInLocalFileSystem()) { return file.getCanonicalPath(); }
Community
IntelliJ IDEA Open API and Plugin Development
Absolute Path of PsiClass
0 votes
Created
March 31, 2014 16:43
Personally I know about UiActivities and Busy objects not much more than you. These entities are used in several places inside IDEA core for blocking something until UI would initialized or for mak...
Community
IntelliJ IDEA Open API and Plugin Development
MergingUpdateQueue - how to get notified when it starts and stops processing updates ?
0 votes
Created
March 31, 2014 14:45
Hi Axelrod,Some of action's output you can change in file tempaltes (Settings | File and Code Templates | Code).I believe that in order to reimplement behaviour of this action you can just implemen...
Community
IntelliJ IDEA Open API and Plugin Development
Is it possible to modify and extend functionality of an existing action
0 votes
Created
April 01, 2014 13:51
Hi Valerio,I've cloned and run your project and I've realised that you're trying to implement gherkin language. Actually IDEA already supports it and it is open sourced. You can find the core of la...
Community
IntelliJ IDEA Open API and Plugin Development
FindUsage for PsiNamedElement with multiple PsiElement children
0 votes
Created
April 01, 2014 13:55
Returning to original problem. I need some code samples with declaration and reference to it. Likely that you just don't implement isReferenceTo method (but it's just guess). Also I can advice you ...
Community
IntelliJ IDEA Open API and Plugin Development
FindUsage for PsiNamedElement with multiple PsiElement children
0 votes
Created
April 02, 2014 19:17
Hi,I was wrong about using CompositePsi, it doesn't fit for your plugin.I've just debug your plugin, it seems that it's not really easy to solve your problem. IMHO, the most proper way (with minimu...
Community
IntelliJ IDEA Open API and Plugin Development
FindUsage for PsiNamedElement with multiple PsiElement children
0 votes
«
First
‹
Previous
Next
›
Last
»