Don Kirkby

- 活动总数 56
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 16
- 订阅数 13
-
创建于 Reproducing compatibility problem in 2024.2
已计划I 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... -
创建于 Avoiding internal API usage
已计划The 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... -
创建于 Some devcontainer images don't work in IntelliJ
已回答I 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... -
创建于 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... -
创建于 Compatibility verification with multiple IDEs
已回答I 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... -
已编辑于 FactoryInlayHintsCollector not created until I click in the editor
已回答I'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... -
创建于 Compatibility verification complains about PhpStorm
已计划In 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... -
创建于 Python dependency blocks my plugin from marketplace
已回答I'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... -
创建于 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... -
创建于 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...