orthecreedence / highlight-lisp

A Common Lisp syntax highlighter written in Javascript
77 stars 7 forks source link

bug:highlighting consecutive numbers of the same type in a list #1

Closed aarvid closed 11 years ago

aarvid commented 11 years ago
(+ 1 2 3 4 5 6) 

will highlight 1 3 5 but not 2 4 6.

Same is true for

(+ 1.0 2.0 3.0 4.0 5.0 6.0)

But not if the types are mixed.

orthecreedence commented 11 years ago

I am able to reproduce. Looking into this now.

orthecreedence commented 11 years ago

Hey, was some weird issue in the regexes. It actually affected a lot more than numbers, but happened only to repeating items.

Should be fixed. Please let me know if it persists.

aarvid commented 11 years ago

works, thanks for the rapid response.