File tree Expand file tree Collapse file tree 6 files changed +8
-6
lines changed Expand file tree Collapse file tree 6 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 32
32
33
33
34
34
(defvar cider-jar-cache-dir (expand-file-name " cider-cache" user-emacs-directory)
35
- " Location where we store dowloaded files for later use." )
35
+ " Location where we store downloaded files for later use." )
36
36
37
37
(defvar cider-jar-content-cache (make-hash-table :test #'equal )
38
38
" Nested hash table of jar-path -> file-path -> bool.
Original file line number Diff line number Diff line change 1
1
edn
2
2
hist
3
+ juxt
4
+ nd
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ The minimum required Clojure version is currently derived using data
33
33
from the
34
34
https://clojure.org/news/2019/02/04/state-of-clojure-2020[State of
35
35
Clojure] survey. In general we consider a Clojure release eligible for
36
- dropping once its usage drops bellow 5%, but we'd not drop support for
36
+ dropping once its usage drops below 5%, but we'd not drop support for
37
37
any release just for the sake of doing it. We'd do it only if
38
38
this would lessen the maintenance burden or open up the possibility for
39
39
big CIDER improvements.
Original file line number Diff line number Diff line change 1
1
= Using Figwheel
2
2
:experimental:
3
3
4
- Figwheel is one of the most popular ClojureScript REPLs today. Bellow you'll
4
+ Figwheel is one of the most popular ClojureScript REPLs today. Below you'll
5
5
instructions how to setup and use it with CIDER.
6
6
7
7
NOTE: There are two versions of Figwheel out there - the legacy https://github.com/bhauman/lein-figwheel[figwheel] and
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ This uses the convention of prepending 'test-' to the namespace name."
120
120
If you have selectors you want
121
121
automatically applied, you can set the variables
122
122
`cider-test-default-include-selectors` and `cider-test-default-exclude-selectors`
123
- to a list of stings to use. The following is an example of setting the default exclude
123
+ to a list of strings to use. The following is an example of setting the default exclude
124
124
selectors so that tests tagged as "integration" or "flakey" don't run.
125
125
126
126
[source,lisp]
Original file line number Diff line number Diff line change 35
35
(it " handles nil input"
36
36
(expect (cider-abbreviate-ns nil ) :to-equal nil ))
37
37
38
- (it " handles empty string intput "
38
+ (it " handles empty string input "
39
39
(expect (cider-abbreviate-ns " " ) :to-equal " " ))
40
40
41
41
(it " shortens all ns segments but the last"
48
48
(it " handles nil input"
49
49
(expect (cider-last-ns-segment nil ) :to-equal nil ))
50
50
51
- (it " handles empty string intput "
51
+ (it " handles empty string input "
52
52
(expect (cider-last-ns-segment " " ) :to-equal " " ))
53
53
54
54
(it " drops all ns segments but the last"
You can’t perform that action at this time.
0 commit comments