Page 7 of 104

Posted: Sat Feb 18, 2006 12:01 pm
by THCM
Readability is improved with proportional fonts. Source is smaller?! My favourite texteditor was CygnusEd on Amiga. It was possible to customize tab positions like with Winword.

I'll take a closer look to the source....

Posted: Sat Feb 18, 2006 12:09 pm
by gnozal
THCM wrote:Readability is improved with proportional fonts.
Funny, I think readability is better with fixed length fonts ! In programming editors I always choose fonts like Courrier New (it's my current choice in jaPBe).

Posted: Sat Feb 18, 2006 12:17 pm
by THCM
With fixed tabpositions there are no problems using proportional fonts and readability is improved, because of more letters on one line.

Normally I use a tab length of 8 spaces and for me it's easier to delete one tab instead of deleting 8 spaces while editing. Moving through the source using cursor keys is also faster.

Posted: Sat Feb 18, 2006 10:14 pm
by mike74
gnozal wrote:Funny, I think readability is better with fixed length fonts ! In programming editors I always choose fonts like Courrier New (it's my current choice in jaPBe).
I like fixed length fonts, too. I think Lucida Console is my favorite.

Thanks and keep up the good work with jaPBe!

Mike

Posted: Sun Feb 19, 2006 3:03 am
by jroad
I like fixed length fonts, too. I think Lucida Console is my favorite.
Hi,

I just finished some research into different fixed length fonts and posted a screenshot comparing 18 of them. You can see it over at:

http://www.donationcoder.com/Forums/bb/ ... pic=2499.0

Lots of useful utilities can be found at that site as well.

Posted: Sun Feb 19, 2006 7:18 am
by rsts
jroad wrote: Hi,

I just finished some research into different fixed length fonts and posted a screenshot comparing 18 of them. You can see it over at:

http://www.donationcoder.com/Forums/bb/ ... pic=2499.0

Lots of useful utilities can be found at that site as well.
Welcome to PB.

I hadn't seen the Dina Font before - looks very nice.

Thanks for the info.

cheers

Posted: Sun Feb 19, 2006 9:58 am
by THCM
Thanx for the nice comparison! I'll take a look at Dina.

Posted: Sun Feb 19, 2006 12:03 pm
by Hades
Ok, now I have to ask...

gnozal, would you please marry me!? :D

Posted: Sun Feb 19, 2006 8:37 pm
by jroad
Welcome to PB.
Thanks, hi everybody!
I hadn't seen the Dina Font before - looks very nice.
...
Thanx for the nice comparison! I'll take a look at Dina.
Your welcome. Thanks for the kind words. I added a ClearType version of the comparison as well. It can make a big difference!

Posted: Mon Feb 20, 2006 9:25 am
by gnozal
Hades wrote:Ok, now I have to ask...

gnozal, would you please marry me!? :D
:lol:

Posted: Mon Feb 20, 2006 2:14 pm
by gnozal
Update

Changes :
- updated syntax coloring for exponential numbers (like 123.5e-20)

Posted: Mon Feb 20, 2006 4:44 pm
by Dummy
you added the autoindent for "EndWith" but you forgot to add "With" ;)

try strg+a;strg+tab for this one and you'll see the bug:

Code: Select all

If #True
  With bla\
  a = 0
  b = 0
EndWith
EndIf
pls fix

Posted: Tue Feb 21, 2006 8:49 am
by gnozal
Update

Changes :
- added brace match check for {} (new fixed length strings)
- fixed 'automatic add end tags for If/Select/For...'

Posted: Tue Feb 21, 2006 9:29 am
by gnozal
Dummy wrote:you added the autoindent for "EndWith" but you forgot to add "With" ;)

try strg+a;strg+tab for this one and you'll see the bug:

Code: Select all

If #True
  With bla\
  a = 0
  b = 0
EndWith
EndIf
pls fix
I will take a look at this

Posted: Tue Feb 21, 2006 10:25 am
by gnozal
Update

Changes :
- EndWith bug fixed