Alexandr Danchenko
Java/Kotlin developer
- 活动总数 181
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 1 名用户
- 投票数 12
- 订阅数 55
-
创建于 Proper Pycharm plugin architecture
已回答Hello, I'm working on Pycharm plugin for display additional information from sqlite files using ExternalAnnotator (and EditorLinePainter). In project (or in several opened [attached] projects in ... -
创建于 Load module event listener
已回答Hello, I need to listen module load events. From documentation I found that can listen module added/removed eventsproject.getMessageBus().connect().subscribe(ProjectTopics.MODULES, new ModuleList... -
创建于 Execute command in virtualenv (in Pycharm plugin)
Hello, I need to execute command from my Pycharm plugin in virtualenv. Maybe someone can provide some starting point or code example? Best regards, Aleks. -
创建于 Run pytest test programmatically
Hello, I need to run pytest test in Pycharm programmatically from my plugin. Can someone provide starting point or code sample? Best regards,Aleks. -
创建于 Disable and enable ExternalAnnotator
已回答Hello, I implemented ExternalAnnotator for my project. In some cases it must be disabled. My ProjectComponent implementation check conditions and if needed it disable annotator extension via ext... -
创建于 Error on publishing plugin via Gradle IntelliJ Idea plugin
已回答Hello, I'm trying to configure build.gradle for publishing my plugin using Gradle (using this plugin -https://github.com/JetBrains/gradle-intellij-plugin). But receiving this error and HTML text wi... -
创建于 Annotator vs ExternalAnnotator
已回答Hello, I'm trying to understand: 1) What's the difference between Annotator and ExternalAnnotator? 2) What should I use to highlight some parts of code? Thank you for help! Aleks. -
创建于 Plugin rest server
Hello, I need simple server in my plugin which will take json and send response in json format. Found RestService and already tried it. Also found that if I start two instances of IDE both inst... -
创建于 Display Kotlin file in EditorTextField
Hello I'm trying to display simple Kotlin Hello World application in EditorTextField. But I can't find Kotlin FileType. For example for Java I can use StdFileTypes.JAVA Can you, please, help how... -
已编辑于 Compile and run source code from EditorTextField automatically
Hello, I'm need automatically compile and run source code from EditorTextField. Currently I'm trying just compile and run HelloWorld. I tried something like this code. But it shows me configurati...