Colin Fleming

- Total activity 1423
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 0
- Subscriptions 468
-
Edited Bug in plugin repo display
I use a couple of different channels for distributing my plugins - default, eap and dev. I use dev builds to be able to publish builds that users might want to test, but I don't want anyone to down... -
Created Problem searching for Java methods by bean property name
I'm trying to allow my plugin to have references in Clojure code to Java methods, referring to them by their bean property name like this: [Customer (= true VIP)] Here Customer refers to a Java cla... -
Created Detect if file is completion copy from Document/VirtualFile?
In my plugin I have a DocumentListener which I use to record changes happening to documents for later post-processing. I'd like to detect if a given Document is actually a file copy for completion ... -
Created Add document range markers in DocumentListener?
AnsweredThe Javadoc for DocumentListener says that the document must not be modified from the listener methods. Does that include adding RangeMarkers? Can they be added from documentChanged()? -
Created Update LookupElements after passing to CompletionResultSet?
I'd like to move towards making my completions more responsive by passing elements to the CompletionResultSet as I generate them, rather than batching them up and sending them all at once, getVaria... -
Created Can't remove plugin update
Hi, I uploaded an update to my plugin which turns out to have been bad due to a bad merge. I've deleted all the versions except this one: https://plugins.jetbrains.com/plugin/8090-cursive/update/36... -
Created Start Run configuration without showing tool window?
In my plugin, the user can create run configurations which are used to start REPL processes. These processes appear in a non-standard toolwindow which is usually docked on the side, rather than the... -
Created Find previously focused editor from Toolwindow?
When the user has a tool window open, ESC will take them back to the previously-focused editor. Is it possible to figure out which editor or file that is while they still have the tool window focused? -
Created Debugger dockable tabs/panels
In my plugin, I'm currently using a standard Content layout with tabs. I'd really like to be able to use the more flexible layout used by the debugger, with dockable/floatable panels which can be l... -
Edited File watching questions
I'd like to use a file watcher to watch for a file containing a port number that will be created by a process I'm running with a run config. What's the best way to achieve this? I know the full pat...