Don Kirkby

- Total activity 48
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 15
- Subscriptions 11
-
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... -
Created Allow my plugin to install on IDEA
I've built a plugin with a dependency on com.intellij.module.python. How can I configure it so that users can install it in IDEA when they have installed the Python Community Edition plugin? It cur... -
Created When do I schedule a ReadTask?
I have some analysis that I want to run every time the current file changes. The analysis can take a few seconds, so I need to cancel it whenever the user types more, then restart the analysis. In ...