Dmitry Kandalov

- Total activity 25
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 7
-
Edited Are there any plans to bring the Commander toolwindow back? :)
AnsweredBecause it could be a great alternative to native OS file managers and maybe combined with the light editor mode 🤔 -
Created How to determine when IDE has started (including all plugins)?
AnsweredIs there some callback to register or flag to check that IDE startup initialisation is finished? -
Created Adding new InspectionProfileEntry to InspectionProfile
Hello, What is the right way from API point of view to create inspection at runtime and add it to InspectionProfile? -
Created Java script resolution of function calls
Hello,For example, consider the code below: function hello1() { console.log("hello1");}var lib2 = function(context) { context.hello2 = function() { console.log("hello2"); };};var li... -
Created Running test in already compiled project takes ~3 seconds
Hello,When I'm running unit test in already compiled project, it takes about 3 secods for IntelliJ to actually run the test. During this time it shows "Make" in progress bar.I was wondering what co... -
Created How to use structural search to find log.error() within method hierarchy?
I want to find invocations of log.error() called from calculate() method within class hierarchy. I use this template:class $Class$ extends $Parent$ { $content$ public boolean calculate() { ...