[slime-devel] Feature request: #+foo foo #-foo not-foo indentation

Nikodemus Siivola nikodemus at random-state.net
Fri Jun 6 09:59:49 UTC 2008


Currently, Slime indents like so:

(defun foo (x)
  (typecase x
    (#+foo foo
           #-foo fake-foo
           :foo)
    (t
     :not-foo)))

whereas it should be like so:

(defun foo (x)
  (typecase x
    (#+foo foo
     #-foo fake-foo
     :foo)
    (t
     :not-foo)))

Is there a way to coax Slime/Emacs to do the right thing here?

Cheers,

 -- Nikodemus



More information about the slime-devel mailing list