You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes indentation of functions with 'with-' in their name.
clojure-indent-function was incorrectly indenting as a def form an invocation of a function with 'with-' anywhere in its name. For example, it was doing: (with-filling (sandwich :peanutbutter :jelly)) (sandwich-with-filling :peanutbutter :jelly) Instead of: (with-filling (sandwich :peanutbutter :jelly)) (sandwich-with-filling :peanutbutter :jelly) Now it does the latter.
0 commit comments