Alexandr Danchenko
Java/Kotlin developer
- Total activity 181
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 12
- Subscriptions 55
-
Created Proper Pycharm plugin architecture
AnsweredHello, 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 ... -
Created Load module event listener
AnsweredHello, 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... -
Created 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. -
Created 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. -
Created Disable and enable ExternalAnnotator
AnsweredHello, 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... -
Created Error on publishing plugin via Gradle IntelliJ Idea plugin
AnsweredHello, 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... -
Created Annotator vs ExternalAnnotator
AnsweredHello, 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. -
Created 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... -
Created 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... -
Edited 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...