Dmitry Kolesnikovich

- Total activity 38
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 14
-
Dmitry Kolesnikovich commented, -
Dmitry Kolesnikovich created a post, 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... -
Dmitry Kolesnikovich created a post, AnsweredHow IntelliJ approaches Swing?
I 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... -
Dmitry Kolesnikovich commented, -
Dmitry Kolesnikovich created a post, AnsweredHow to avoid duplicates in CompletionResultSet
Dmitry KolesnikovichYesterday at 18:46 I try to implement custom CompletionContributor. There is my code that I simplified for clarity. public class FeatureaCompletionContributor extends Completi... -
Dmitry Kolesnikovich created a post, AnsweredHow can I listen for keyboard events on file with specified extension in project tree?
I 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. -
-
Dmitry Kolesnikovich created a post, 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? -
Dmitry Kolesnikovich created a post, 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() {... -
Dmitry Kolesnikovich created a post, 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)...