Syntax Off (2012)
kyleisom.net
Syntax Off (2012)
1–10 of 48 posts
Re: Syntax Off (2012)
#2Re: Syntax Off (2012)
#3http://www.linusakesson.net/programming/syntaxhighlighting/
I still think it is nutty.
Re: Syntax Off (2012)
#4Re: Syntax Off (2012)
#5Which is true, we used to joke that the C compiler on a VAX was so slow that you wanted to be really really sure it wasn't going to throw some crappy syntax error so you read through your code twice before submitting it. But a friend of mine from the Amiga community showed me that iterating fast often lead to faster code development than slower iteration. In both cases having your code in your head made for a better result, but someone who could iterate fast and hold the code in their head, always out performed the person on the slow path.
It can be hard to develop the discipline though.
Re: Syntax Off (2012)
#6* zazen: http://www.vim.org/scripts/script.php?script_id=3413
* zenesque: http://www.vim.org/scripts/script.php?script_id=3340
Re: Syntax Off (2012)
#7"How I stopped [perfectly fine activity]... And why you should, too."
Re: Syntax Off (2012)
#8This reminds me of something I've heard Douglas Crockford propose in the past: syntax highlighting would be more useful [in some languages] if it was used to color different scopes.
Re: Syntax Off (2012)
#9On the other hand, perhaps highlighting the syntax is to represent the structure of source code, or make it more readable. There is also a text highlight utility for text, called BeeLineReader (http://www.beelinereader.com/)
Re: Syntax Off (2012)
#10I found this interesting, as my reaction has been almost the complete opposite. I've never felt that syntax highlighting played a part in understanding code at a high level. Syntax highlighting is there for when I'm reading my code like a copy-editor. It (along with an inline linter) is there to make syntactical errors more obvious so I can deal with them as I make them.