Don Kirkby
- Total activity 56
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 16
- Subscriptions 13
-
Created Reproducing compatibility problem in 2024.2
PlannedI got a compatiblity error report from the plugin verifier on my plugin marketplace page. I want to reproduce the problem by running the plugin verifier on my laptop, but it can't download the late... -
Created Avoiding internal API usage
PlannedThe current version of my plugin has an issue with the latest PyCharm release (2023.3):java.lang.IllegalStateException: Should not be called at com.intellij.openapi.fileEditor.AsyncFileEditorProvi... -
Created Some devcontainer images don't work in IntelliJ
AnsweredI have a devcontainer working in VSCode, but I can't get the same image to work with an IntelliJ IDE. I tried checking the system requirements, and I think the image meets them. Are there other thi... -
Created Adjust run configuration in a plugin
I'm writing a PyCharm plugin, and I want it to run a modified version of the selected run configuration. How can I clone the selected run configuration, modify it, and then launch a process? I also... -
Created Compatibility verification with multiple IDEs
AnsweredI just published my first release of Live Coding in Python after switching to a Gradle build, and there are a couple of problems. It sets the until-build when I didn't want it to. I think I've fix... -
Edited FactoryInlayHintsCollector not created until I click in the editor
AnsweredI've created a plugin that displays text beside my Python source code. The display text scrolls in sync with the Python source code, but it gets out of sync in recent versions of PyCharm and IDEA w... -
Created Compatibility verification complains about PhpStorm
PlannedIn a previous post, Jakub Chrzanowski fixed a problem with nested plugin dependencies, so now my plugin shows up correctly in the marketplace for CLion users, even though my plugin depends on the P... -
Created Python dependency blocks my plugin from marketplace
AnsweredI'm trying to get the marketplace to let users install the latest version of my plugin in IDEs other than PyCharm. Can anyone help me understand why it's not working? In 2019, I asked how to make m... -
Created Supporting Quick Definition From a FileEditorProvider
I have built the Live Coding in Python plugin to visualize what happens as you run your Python code. It vertically splits the editor in half, and displays variable values and loop iterations in the... -
Created Import errors in a plugin project's Python files
I created a plugin project following the instructions here: https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/creating_plugin_project.html I want to include some Python scripts in...