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
This makes the pretty-printed namespace form more in line with the
clojure style guide.
Specifically we go from:
```
(ns foo.bar
(:require [this.library :as lib]))
```
To:
```
(ns foo.bar
(:require
[this.library :as lib]))
```
This commit closesclojure-emacs/clj-refactor.el#459
0 commit comments