-
This is a fix for the bug I introduced in SVN r16231 - "Ruby edit mode updated (patch #2846453)".
2009-10-07 06:21:09 UTC in jEdit
-
In the Ruby mode on SVN trunk, the "def" keyword is being highlighted even if it appears in the middle of a variable name, such as "node_[def]s" [emphasis added]. The attached patch fixes the problem (apply with patch -p1). Thanks for your consideration.
2009-09-28 06:31:12 UTC in jEdit
-
I looked into this more and found that, if you revert my patch, you will still notice the artifacts throughout the Swing GUI.
My patch merely fixes the artifacts in the TextArea. The rest of the code does not use FontMetrics.getLeading() anywhere, and I suspect that's the reason behind the artifacts in the rest of the Swing GUI.
2009-09-23 23:23:11 UTC in jEdit
-
Thanks for the feedback. I will try to submit a new patch that does the line-height correction in the TextArea only.
2009-09-23 00:03:23 UTC in jEdit
-
I added a new patch which adds 1 more keyword. Thanks.
2009-09-18 08:42:33 UTC in jEdit
-
Deassign from blueyed. It seems he's too busy lately.
Please someone review my new patch! Thanks.
2009-09-10 22:18:45 UTC in jEdit
-
Also, this patch isn't perfect because I'm not an experienced jEdit developer. I just came upon the solution through trial and error. If you could suggest a more efficient way to implement this, I would be very greatful. Thanks for your consideration.
2009-08-29 20:11:28 UTC in jEdit
-
Correct, but a line containing only whitespace has no meaning in any programming languages (except the "Whitespace" language, but nobody uses that! http://en.wikipedia.org/wiki/Whitespace_%28programming_language%29). Such lines should be ignored in fold level processing --- they should neither increase nor decrease the current fold level.
Here is my use case: I like to use...
2009-08-29 20:07:00 UTC in jEdit
-
This patch makes the soft word-wrap mode behave like the CSS "max-width" property:
1. When the window width is less than the maximum, the wrapping
behaves like wrap-margin is 0 (fits to the window).
2. When the window width is greater than the maximum, the wrapping behaves
like fixed wrap-margin (wrapping restricted to the maximum width).
See also...
2009-08-28 19:30:43 UTC in jEdit
-
Attached is a patch that adds highlighting for the "class", "def", and "module" keywords. These keywords are syntax highlighted in other editors, such as Vim. Thanks.
2009-08-28 19:26:02 UTC in jEdit