racket / pict

Other
15 stars 20 forks source link

Make coloring in codeblock-pict more consistent with code #36

Closed takikawa closed 6 years ago

takikawa commented 6 years ago

This PR should make the coloring for codeblock-pict look more like code. Here are some example snippets that will show the current differences if you run them in DrRacket:

(require pict/code)
(codeblock-pict "#:foo")
(code #:foo)
(codeblock-pict "define")
(code define)
stamourv commented 6 years ago

Thanks!