vote up 3 vote down star

Possible Duplicate:
Why use monospace fonts in your IDE?

Monospaced fonts are quite dominating for programming but how often do you actually need the monospace?

As long as the indentation is aligned I can't see any use really. Maybe if you are editing array-based matrices by hand or comparing length of strings with your eye it might be useful but for normal code?

I've tried using a non monospaced font for an hour now and i don't miss it really. What i did find annoying though was that these fonts didn't emphasize paranthesis, commas, etc as well as coding-fonts, but otherwhise i have to say it works just as good.

Are there any reasons why it's so often used or is it just "we've always been doing it this way"?

(I'm switching back to consolas btw :] )

flag
7  
So, you tried to use variable-width fonts and are switching back? Why did you switch back? The answer to that question is the answer to this question. – Thomas Owens Oct 30 at 16:55
2  
Duplicate: stackoverflow.com/questions/218623/… – Brandon Oct 30 at 16:55

closed as exact duplicate by Brandon, Lukáš Lalinský, Thomas Owens, Ken White, Stefano Borini Oct 30 at 17:02

5 Answers

vote up 17 vote down

For me, I think the biggest thing is that when you move your cursor up/down, it goes to an expected, predictable location in previous/next line.

With non-monospaced fonts its harder to navigate your cursor around.

link|flag
vote up 4 vote down

Apart from predictably moving the cursor, it's also to align various things.

Indentation at the beginning of the line is obviously not a problem with proportional fonts, but sometimes you want to indent comments too. For example:

foo();        // This comment explains the aggregate effect of the
foobar();     // three function calls in this sequence because it
foobarbaz();  // really only makes sense as a single comment

Granted, many coding styles today frown on this and prefer such a comment be on its own separate lines preceding the calls. But I've seen cases where it really makes more sense to have similar multiline comments in-line.

Same thing goes for languages where you have constructs that require similar alignment. For example, LINQ in C#:

var a = from x in xs
        where x > 0
        select x;

Try aligning that with proportional fonts. Similar issue exists in F# and Haskell.

Some people also like to align other things, e.g.:

while (averylongexpression &&
       anotherverylongexpression)

or:

for (vector<...>::iterator i = v.begin();
                           i != v.end();
                           ++i)

or:

function_name(averylongargument1,
              averylongargument2,
              ...);
link|flag
vote up 3 vote down

For once, to be able to easily distinguish between "1il".

link|flag
1  
Monospaced doesn't mean 'legible'. Monospaced means exactly that: letters are spaced evenly throughout the text. I could have the same glyph for 1, i and l and still have them evenly spaced, which would make that font 'monospaced'. – Seb Oct 30 at 17:04
vote up 1 vote down

Obviously, it doesn't change your program, but rather the organization.

It's harder to read a logical text without a monospaced font, at least for me. They let the code look prettier and be more organized.

Once in C I had a table full of strings and integers and the monospaced font helped a lot identifying the size of things.

Well, I guess the bottom line is preference, in my case, I can't stand not using monospaced font and my favorite is: Courier New.

link|flag
vote up 0 vote down

Monospaced fonts make it much easier to line up code.

This is especially true when working with a team; everyone in the team can use different fonts, and as long as they're all monospaced, everything will line up. Similarly, if a single person uses many different development tools, everything will line up if they're all monospaced. If they weren't all monospaced, you'd have to make sure that they all use the same font, and if you're developing on two platforms, that can be difficult.

In fact, some development tools only support monospaced fonts.

Another reason is that monospaced fonts tend to have more distinct characters. Compare lIio0 to lIio0, and you'll see what I mean. They also make it much easier to count whitespace.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.