Colin Fleming
- Total activity 1477
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 0
- Subscriptions 484
-
Created Marking certain files as special?
AnsweredI'd like users to be able to mark particular files as special in some way. In my case, this is because there's a new dialect of the main language I support which is a lightweight scripting solution... -
Created Idempotency errors under 2020.1
AnsweredSince updating my plugin to 2020.1, I've been receiving errors like this: [java] Caused by: java.lang.Throwable: Non-idempotent computation: it returns different results when invoked multipl... -
Created PicoContainer exceptions when using 2020.1
AnsweredI've been working for the last couple of days on trying to update my plugin to work with the 2020.1 EAP. When executing my tests, I'm getting an error, the stacktrace is below. I don't get these er... -
Edited JavaPatchableProgramRunner.execute() final in 2020.1
AnsweredThe JavaPatchableProgramRunner.execute() method has been updated to be final in 2020.1. Why is this? I have run configurations for a couple of build systems which require a sometimes lengthy projec... -
Edited Implementing JavaScript interop for a compile-to-JS language
AnsweredI develop Cursive, a plugin for Clojure development. I'd like to implement better support ClojureScript in Cursive, which is the dialect of Clojure which compiles to JavaScript. I've looked around ... -
Created FileEditorManager.openTextEditor no longer opens in existing split
AnsweredIn my plugin, I sometimes open a file like this: FileEditorManager.getInstance(project).openTextEditor(OpenFileDescriptor(project, virtualFile, offset), true) Previously, with Editor Tabs set to No... -
Created Compile IntelliJ project on command line
AnsweredI'd like to make a script to compile an IntelliJ project and build an artifact on the command line. Is it possible to do this, possibly using JPS? -
Created Help manually running plugin tests
AnsweredI'm trying to run my plugin's unit tests via Ant (long story). I have the following config: <java classname="clojure.main" fork="true" dir="${basedir}" failonerror="true"><classpath><path refid="cu... -
Created Shelved items not shown
AnsweredI recently went to apply some work that I had shelved some time ago, and I found that nothing appears in my Shelf even though .idea/shelf contains many changes. Any idea why this might be happening... -
Created Confusion about validating External System system settings
I have a bug in my External System implementation where the user can't configure the Global settings from the Project Import dialog, but it works from the Preferences pane under Build Tools. I can'...