about summary refs log tree commit diff stats
path: root/x.rkt
Commit message (Collapse)AuthorAgeFilesLines
* 638 - quick spike: syntax highlighting in replKartik K. Agaram2015-01-271-0/+14
Backspace kinda works. Parens are colored in three rotating colors which helps with balancing. Comments and strings are colored. But it's hard to handle backspace in all situations. Like if you backspace over a quote you have to either quit the string-slurping routine you're in, or return to string slurping mode. Similarly for comments; *there* you don't even have a end delimiter to let you know you're back in a comment. You have to keep track of what came before. I experimented with a library but it interacts poorly with the charterm library I'm already using. Ended up with a gross inefficient approach instead.