vito / language-racket

Racket and Scribble language support for Atom
9 stars 5 forks source link

Syntax highlight of `lambda` #2

Open polybuildr opened 9 years ago

polybuildr commented 9 years ago

Currently, lambda gets highlighted when used as:

(lambda (arg1 arg2)
    (+ arg1 arg2))

However, highlighting does not work when used as:

(lambda ls
    (apply + ls))
polybuildr commented 9 years ago

And GitHub doesn't highlight it either. :P Am I doing something wrong?

pattyjogal commented 8 years ago

Same thing happens with

(define constant 3)

It looks like it wants that extra parenthesis after (define and (lambda