I want to write a Racket mode for ace,

Relate issue: https://github.com/ajaxorg/ace/issues/3659

I was wondering if maybe I could find the full list of keywords of Racket.

The example of scheme language would be:

            var e = "case|do|let|loop|if|else|when",
                t = "eq?|eqv?|equal?|and|or|not|null?",
                n = "#t|#f",
                r = 
"cons|car|cdr|cond|lambda|lambda*|syntax-rules|format|set!|quote|eval|append|list|list?|member?|load",
                i = this.createKeywordMapper({
                    "keyword.control": e,
                    "keyword.operator": t,
                    "constant.language": n,
                    "support.function": r
                }, "identifier", !0);


-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to