Dmitry Kolesnikovich

- Total activity 38
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 14
-
Edited Question on indentation in JS files
I want WebStorm to refactor JS file like this: const a = [ {name: 'BackgroundContainer', scaleStrategy: ['cover-screen', 1920, 1920], children: [ {name: 'background', type: 'sprite', imag... -
Edited How IntelliJ approaches Swing?
AnsweredI want in my custom simple private IDE to take from IntelliJ how she approaches Swing. By that I mean the way IntelliJ implements visual behaviour of Tool Window concept. So, if I have no much time... -
Created How to avoid duplicates in CompletionResultSet
AnsweredDmitry KolesnikovichYesterday at 18:46 I try to implement custom CompletionContributor. There is my code that I simplified for clarity. public class FeatureaCompletionContributor extends Completi... -
Edited How can I listen for keyboard events on file with specified extension in project tree?
AnsweredI have idea to open external program by pressing F3 on file with my custom extension. How can I listen for keyboard events on file with specified extension in project tree? Thanks. -
Created How to set --multi-dex option via Android plugin?
I am trying to set --multi-dex option like thisBut get an error What is the correct way to set --mult-dex option? -
Created What is proper way to edit xml tag?
What is proper way to use com.intellij.psi.xml.XmlTag.setAttribute()? This does not work for me ApplicationManager.getApplication().runWriteAction(new Runnable() { @Override public void run() {... -
Created How to listen changes of xml attributes in xml files?
I know how to listen changes in file in generalVirtualFileManager.getInstance().addVirtualFileListener(new VirtualFileAdapter(){ @Override public void beforeContentsChange(VirtualFileEvent event)... -
Created How to create com.intellij.psi.xml.XmlFile from com.intellij.openapi.vfs.Virtual file?
How to create com.intellij.psi.xml.XmlFile from com.intellij.openapi.vfs.Virtual file?Does my edits on newly created XmlFile will change actual file on the disk? -
Created How to extend Run/Debug Configurations?
I need to extend Run/Debug Configurations with my custom one. What classes can be usefull for this? -
Created How to extend Project View?
Hello. I'm new in plugin development. In few words my new custom plugin should be able to show every .xml file in Project View in form of tree of tags (like every .java file is "root" for "tree" of...