Page 1 of 1

chroma coding nesting depth

Posted: Tue Aug 18, 2009 12:01 pm
by ceti331
are there any text editors which chroma-code lisp code by nesting depth, something like this

(defun factorial (n)(if (<= n 1)
1
(* n (factorial (- n 1)))))

Re: chroma coding nesting depth

Posted: Tue Aug 18, 2009 7:20 pm
by gugamilare
Cusp colorizes the code where the cursor is at the moment.
See also colorize.

Re: chroma coding nesting depth

Posted: Tue Aug 18, 2009 7:29 pm
by nuntius
Your question reminded me of an old Lemonodor post.