I’m happy for y’all to keep talking about fonts here, but you might get a wider audience if you start a new topic.
Whether you want a wider audience is another question…
@capieniz you are correct the number of characters per line is ~29 per line (I’d need to dig deeper into the code the give you the exact number for all scenarios).
It’s still 29 even if you type just M, e.g. type a lot of Ms until it goes off the end of the screen, then type a 1, then left arrow till you can see the cursor and delete some Ms, watch how the 1 appears.
(there is also a rather nasty overflow bug, e.g. type 29 :, left arrow several times, type some more characters (#4))
What makes things slightly more complex is that the actual internal limit is how many ops you can have per line not how many characters it takes up. Normally this is not a problem as the number of characters used is usual greater than the number of ops, but it is possible to construct lines which will fail, e.g.
LIM P 1 2 3 P 1 2 3 P 1 2 3
returns COMMAND TOO LONG. (FYI, numbers are ops too!)
I will say at the moment, issues relating to running out of characters seem to be few and far between. (Though I do have some ideas that might suddenly make it important.)