The width of margin 2, the marker margin is based upon the width of margin 1, the line number margin. Which doesn't make much sense and results in it being wider than needed.
|
target.margin_width_n[2] = not CURSES and target.margin_width_n[1] + 4 or 1 |
I think the line above should be
target.margin_width_n[2] = not CURSES and 4 or 1
That's the default in TA 11 and TA 12 see
https://github.com/orbitalquark/textadept/blob/2dc0609b81018fa52f75084ec6c22b59c5771e6b/init.lua#L171
Thanks.
The width of margin 2, the marker margin is based upon the width of margin 1, the line number margin. Which doesn't make much sense and results in it being wider than needed.
textredux/core/buffer.lua
Line 491 in b7900c7
I think the line above should be
That's the default in TA 11 and TA 12 see
https://github.com/orbitalquark/textadept/blob/2dc0609b81018fa52f75084ec6c22b59c5771e6b/init.lua#L171
Thanks.