Skip to content

Commit 2f90ebc

Browse files
wandersoncferreirabbatsov
authored andcommitted
[Fix #520] Add ns-qualified versions of all default symbols to clojure-align-cond-forms (#540)
I only added the qualified names into the list of values. I think that is the most straightforward way to solve this issue.
1 parent 721287c commit 2f90ebc

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## master (unreleased)
44

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+
59
## 5.11.0 (2019-07-16)
610

711
### New features

clojure-mode.el

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1130,7 +1130,9 @@ will align the values like this:
11301130
:safe #'listp
11311131
:type '(repeat string))
11321132

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")
11341136
"List of strings identifying cond-like forms."
11351137
:package-version '(clojure-mode . "5.1")
11361138
:safe #'listp

0 commit comments

Comments
 (0)