Colin Fleming

- Total activity 1428
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 0
- Subscriptions 470
-
Created Issues embedding editor in block inlay
PlannedI'm trying to embed a Swing component into an editor using a block inlay. The component contains, among other things, an embedded editor. I'm having some problems with this: I'm using EditorCompon... -
Created Extending Code With Me?
AnsweredI've had a request to improve my plugin to work better with Code With Me. Specifically, my users always use a REPL and that is currently not synced to other clients. Is it possible to achieve this? -
Created Coverage integration for unusual JVM language
AnsweredI'm interested in implementing coverage support for my plugin, but I'm not sure what the best way to proceed is. I've read the mega-thread here: https://intellij-support.jetbrains.com/hc/en-us/comm... -
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?