Wow, I never thought I would see proportional fonts specifically designed for coding. I've coded almost exclusively in proportional fonts for over ten years. The font I use the most is Georgia. It makes code easier to read and more pleasing to the eye, just like any other text.<p>Besides personal preference, I think there are two main reasons people avoid proportional fonts: column alignment and two-space indents.<p>Two-space indents are an unfortunate trend in coding styles, because they practically mandate the use of a monospaced font to see the indentation. I use tabs for indentation, which let each developer adjust the visual indentation to suit their own eyes. Four-space indents are OK too.<p>I would love to see programmer's editors provide a way to control the amount of visual indentation that each leading space represents.<p>Column alignment of course is not possible with proportional fonts, but that's an easy problem to solve: don't do it. Instead of this:<p><pre><code> void DoSomethingWithStuff(SomeReallyFancyTypeName thing,
string name
int count,
bool condition);
</code></pre>
Write this:<p><pre><code> void DoSomethingWithStuff(
SomeReallyFancyTypeName thing,
string name
int count,
bool condition
);
</code></pre>
While you lose the advantage of seeing all the parameter names lined up, it becomes much easier to visually associate each name with its type. My eyes tend to wander when I have to scan across a wide horizontal gap to match things up.<p>This style also leads to much shorter line lengths as can be seen here, and it's easier to maintain: You don't have to realign things when you change the length of the function name or one of the type names, or when you add a parameter with a longer name than the ones you have already.<p>A case where column alignment is more useful is ASCII art in comments. I've experimented with using a monospaced font for comments and proportional for code, which solves that problem nicely. But I don't use ASCII art much myself, so I went back to proportional for everything.<p>I'm looking forward to trying out these fonts!