File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## master (unreleased)
4
4
5
+ ### Bugs fixed
6
+
7
+ * [ #520 ] ( https://github.com/clojure-emacs/clojure-mode/issues/508 ) : Fix allow ` clojure-align-cond-forms ` to recognize qualified forms.
8
+
5
9
## 5.11.0 (2019-07-16)
6
10
7
11
### New features
Original file line number Diff line number Diff line change @@ -1130,7 +1130,9 @@ will align the values like this:
1130
1130
:safe #'listp
1131
1131
:type '(repeat string))
1132
1132
1133
- (defcustom clojure-align-cond-forms '(" condp" " cond" " cond->" " cond->>" " case" " are" )
1133
+ (defcustom clojure-align-cond-forms '(" condp" " cond" " cond->" " cond->>" " case" " are"
1134
+ " clojure.core/condp" " clojure.core/cond" " clojure.core/cond->"
1135
+ " clojure.core/cond->>" " clojure.core/case" " clojure.test/are" )
1134
1136
" List of strings identifying cond-like forms."
1135
1137
:package-version '(clojure-mode . " 5.1" )
1136
1138
:safe #'listp
You can’t perform that action at this time.
0 commit comments