[slime-devel] change current indentation?

Maurice mauricex at gmx.net
Sat Oct 1 15:17:26 UTC 2005


Hi,

is there a way to change the indentation for some specific lines?

For example this comes up using the default indentation:

  (define-event-handler 'events
      (:key-down (key)
                 (print key))
    (:mouse-down (button x y)
                 ...))

And I want it like this:

  (define-event-handler 'events
    (:key-down (key)
      (print key))
    (:mouse-down (button x y)
      ...))

Maybe it's possible to define a key which cycles through the various
standard indentations?

Thank you.




More information about the slime-devel mailing list