bobbylight
bobbylight
@akosyakov, is this the reason I sometimes see files not copied, but a 0-byte "copy" created in the target directory instead?
Another possibility is some sort of factory for RSTA instances, encouraging add-ons to call into that? ``` public static RSyntaxTextArea createTextArea() { RSyntaxTextArea textArea = new RSyntaxTextArea(80, 25); globalRstaTheme.apply(textArea); return...
Sounds like a good idea, short of redoing the `Theme` API to be better integrated into RSTA. The best place to put the Theme application logic is in `addNotify()` since...
The reason I said it's "not great" is because I suggested putting the theme setting code in addNotify(), not in updateUI(), so it wouldn't get automatically updated. I'm aware of...
Those are fair things to ask, but at present RSTA isn't quite designed that way. Themes "apply" themseves by setting color/font properties into the RSTA instance's `SyntaxScheme`, which is a...
This is admittedly a bug, but I consider it low priority since the fix requires adding a private field solely to store the state of the "mark all highlight color"...
This feature request is pretty low priority in my mind, but I am always open to pull requests.
@mike-smith-portswigger, any reason you closed this PR?
I'm not sure there's a workaround for this, unfortunately. Pull requests welcome!
Your suggestion seems like a good idea, but I tested it out and it results in some glitchy back-and-forth cursor changing between the "editable text' cursor and the default arrow/pointer...