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.