Colin Fleming
- Total activity 1477
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 0
- Subscriptions 484
-
Created Change line spacing for specific lines in editor?
Hi all,Is it possible to have non-uniform line spacing in an editor? Specifically, this is for the history view of a language console - I'd like to have a small gap above each command/result pair s... -
Created Using test framework with JUnit 4?
Hi all,I'd like to use the test framework with JUnit 4 because I'd like to use the parameterised tests feature. Has anyone managed to make this work? I tried converting one of my tests which extend... -
Created [Ann] PsiViewer 2.27.0
Hi all,I've just uploaded an updated version of the PsiViewer plugin, which should work better with recent versions of IntelliJ. Andrew Armstrong was kind enough to release the original source code... -
Created Close toolwindow on startup?
I'm using a toolwindow to display my language console, but I don't start a console at startup. If the user has the toolwindow open when they close IDEA it's still open when they start it up again, ... -
Created How to add support for new symbol patterns?
Hi all,My plugin is for a language (Scheme) that allows practically any symbol in identifiers. In particular dashes are very common (like: send-request-to-server). I'd like to add support for this ... -
Created commitDocument in TypedHandler?
Hi all,I've created a TypedHandlerDelegate, what I wanted to do was to reindent the line after a certain character was pressed at the start of a line (using CodeStyleManager.adjustLineIndent()). Ho... -
Created Action shortcut not being displayed
Hi all,In my plugin I register an action group in which I register four actions. They're all defined in exactly the same way in the plugin.xml, but one of them doesn't have its shortcut key display... -
Created Recent change notes formatting?
I just uploaded my first plugin, and I've noticed a couple of things. First, the project website page link didn't appear - I'm pretty sure I filled it in in the form. Second, the release notes form... -
Created [ANN] Schemely 0.0.1
This is the plugin I've been working on for a while: Schemely, a mode for editing Scheme source in IntelliJ. It's currently *very* rough, I'm mostly uploading it so that some friends can beta-test ... -
Created Brace matching problem
In my Scheme language plugin, I've implemented a PairedBraceMatcher, which works great in normal editors. However it doesn't work in my language console, and I can't figure out why - none of the me...