The scheme-mode
indents application in this way:
(define (x)
(x 1
2))
But when the function to apply is the result of another application scheme-mode
indents the code this way:
(define (f)
((f) 1
2))
But I would like to indent this in the same way as the first.
(define (f)
((f) 1
2))
How can I achieve this?