What font do you use for your code editor?

Posted by Harmen on Stack Overflow See other posts from Stack Overflow or by Harmen
Published on 2010-05-12T11:59:42Z Indexed on 2010/05/12 12:04 UTC
Read the original article Hit count: 132

Filed under:
|
|

For a long time I used Courier New as default font for my code editor, until I got more into typography and found this new fixed-width font called Triskweline: Triskweline - Example

The font is beautiful, but unfortunately it works only at size 10pt.

This made me wonder: what (custom) font do you use for your code editor?

© Stack Overflow or respective owner

Related posts about font

Related posts about code-editor

  • Fireball.CodeEditor

    as seen on C# Source - Search for 'C# Source'
    Fireball.CodeEditor is a source editor control with syntax highlight support. It supports some common programming language and you can add your own syntax. Also on the website you can find a software called FireEdit. It is a open source small code editor with support for extensibility from plugins… >>> More

  • Mac text/code editor

    as seen on Stack Overflow - Search for 'Stack Overflow'
    I searched for this and found Maudite's question about text editors but they were all for Windows. As you have no doubt guessed, I am trying to find out if there are any text/code editors for the Mac besides what I know of. I'll edit my post to include editors listed. Free Textwrangler XCode and… >>> More

  • Code editor with autocomplete

    as seen on Stack Overflow - Search for 'Stack Overflow'
    I need to create a code editor for my own simple language: className.MethodName(parameterName = 2, ... ) I've created the appropriate grammar and autogenerate parser using ANTLR tool. Now I would like to have an autocomplete for class, method, variables and parameter names. This list should be context… >>> More

  • Searching for a source code editor component

    as seen on Stack Overflow - Search for 'Stack Overflow'
    Hi, I have to develop a program at work in which a consultant can enter a specification which is developed 2 years ago here in house. So i can't really tell what it is about. But the editor should support some standard functionality such as syntax highlighting, auto completion and maybe search &… >>> More

  • Properly design a code editor application

    as seen on Stack Overflow - Search for 'Stack Overflow'
    I'm working on personal project which is basically a code editor. Imagine standard File menu with menu items New, Open, Save, Save As, Save All, Close, Close All. I'm stuck with proper design. Currently I have: A Document class which represents a document - code editing control, respective tab… >>> More