Line count
Brought to you by:
jguentherodt
The line count on the left hand side of an opened file
doesn't register over 9999 lines. When it reaches 9999
it starts over at 1000 instead of continuing with
10000. The line count also appears to only have 4
possible digits.
Not sure if anyone else has such large files but I
noticed this bug today when I was editing a file of
10341 lines.
Logged In: YES
user_id=1846699
Originator: NO
I think the system is actually counting beyond 9999, but you can't see the fourth zero because the line number area is limited to 4 digits. The root cause seems to be that the line number area does not properly resize itself.
It should probably be resized based on the width of the last line number in the source. Failing that, it should probably be manually resizable.
I'll look into the code, and see what can be done.