File tree Expand file tree Collapse file tree 4 files changed +19
-7
lines changed Expand file tree Collapse file tree 4 files changed +19
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
== Emacs
4
4
5
- CIDER supports Emacs 25 .1+. More generally we try to support the last 3 major Emacs releases
5
+ CIDER supports Emacs 26 .1+. More generally we try to support the last 3 major Emacs releases
6
6
when that's feasible and doesn't add a lot of maintenance overhead.
7
7
8
8
NOTE: We pay special attention to supporting whatever Emacs is bundled with the current stable Debian
@@ -96,6 +96,20 @@ Below you can find the official compatibility matrix for CIDER.
96
96
| 8
97
97
| 1.8
98
98
99
+ | 1.1
100
+ | 25.1
101
+ | 0.6
102
+ | 0.25
103
+ | 8
104
+ | 1.8
105
+
106
+ | 1.2
107
+ | 26.1
108
+ | 0.9
109
+ | 0.25
110
+ | 8
111
+ | 1.8
112
+
99
113
|===
100
114
101
115
TIP: You can also check the requirements of a particular CIDER version by inspecting
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ release. If you're new to Emacs you might want to go through
12
12
https://www.gnu.org/software/emacs/tour/index.html[the guided tour of Emacs]
13
13
and the built-in tutorial (just press kbd:[C-h t]).
14
14
15
- CIDER officially supports Emacs 25 .1+, Java 8+ and Clojure(Script)
15
+ CIDER officially supports Emacs 26 .1+, Java 8+ and Clojure(Script)
16
16
1.8+. CIDER 0.17 (Andalucía) was the final release which supported
17
17
Java 7 and Clojure(Script) 1.7.
18
18
Original file line number Diff line number Diff line change 18
18
19
19
== What are CIDER's installation prerequisites?
20
20
21
- CIDER officially supports Emacs 25 .1+, Java 8+ and Clojure(Script) 1.8+.
21
+ CIDER officially supports Emacs 26 .1+, Java 8+ and Clojure(Script) 1.8+.
22
22
23
23
NOTE: CIDER 0.17 was the final release which supported Java 7 and Clojure(Script) 1.7.
24
24
Original file line number Diff line number Diff line change @@ -163,13 +163,11 @@ buffer."
163
163
(with-clojure-buffer " (1 2 3|)"
164
164
(expect (cider-list-at-point) :to-equal " (1 2 3)" )))
165
165
166
- ; ; doesn't work on Emacs 25
167
- (xit " handles leading @ reader macro properly"
166
+ (it " handles leading @ reader macro properly"
168
167
(with-clojure-buffer " @(1 2 3|)"
169
168
(expect (cider-list-at-point) :to-equal " @(1 2 3)" )))
170
169
171
- ; ; doesn't work on Emacs 25
172
- (xit " handles leading ' reader macro properly"
170
+ (it " handles leading ' reader macro properly"
173
171
(with-clojure-buffer " '(1 2 3|)"
174
172
(expect (cider-list-at-point) :to-equal " '(1 2 3)" )))
175
173
You can’t perform that action at this time.
0 commit comments