Dmitry Kandalov
- 活动总数 25
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 7
-
已编辑于 Are there any plans to bring the Commander toolwindow back? :)
已回答Because it could be a great alternative to native OS file managers and maybe combined with the light editor mode 🤔 -
创建于 How to determine when IDE has started (including all plugins)?
已回答Is there some callback to register or flag to check that IDE startup initialisation is finished? -
创建于 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? -
创建于 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... -
创建于 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... -
创建于 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() { ...