chroma coding nesting depth

Discussion of other useful tools
Post Reply
ceti331

chroma coding nesting depth

Post by ceti331 » Tue Aug 18, 2009 12:01 pm

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)))))

gugamilare
Posts: 406
Joined: Sat Mar 07, 2009 6:17 pm
Location: Brazil
Contact:

Re: chroma coding nesting depth

Post by gugamilare » Tue Aug 18, 2009 7:20 pm

Cusp colorizes the code where the cursor is at the moment.
See also colorize.

nuntius
Posts: 538
Joined: Sat Aug 09, 2008 10:44 am
Location: Newton, MA

Re: chroma coding nesting depth

Post by nuntius » Tue Aug 18, 2009 7:29 pm

Your question reminded me of an old Lemonodor post.

Post Reply