|
|
|
|
|
by joshjb17
1321 days ago
|
|
Two big reasons for continuing to use monospaced fonts in programming: 1) Support for vim navigation, where hjkl move you one character in a direction on an evenly spaced grid. Remove that uniform spacing and up ceases to be “up” 2) Legibility for formatted comments and ASCII art (could argue these should be avoided but I’ve seen some magical ASCII art in code) //////////////// // My Comment // //////////////// |
|
1/ That’s already broken by line wrapping. gj is the command moving up in the grid not j. The fact you are confusing the two should tell you how little of a difference some sideway movement makes.
2/ Don’t use ASCII art in code. It’s annoying for people not using monospaced font and I’m not alone.