I'd like to have a function
(defun call-with-foo (a b function) ...)
be indented like
(call-with-foo (foo 1 2 3) (bar 9 8 7) #'(lambda (x) ...))
I'm tempted to change SWANK indentation update code to recognize and treat specially functions starting with CALL-WITH, and having a last parameter named FUNCTION or CONTINUATION.
I could see people not wanting it, so let me ask what you guys think. Should this be default behaviour, go to a contrib, or should I be damned for raising the question?
-T.