File tree Expand file tree Collapse file tree 2 files changed +14
-12
lines changed Expand file tree Collapse file tree 2 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 5
5
### New features
6
6
7
7
### Changes
8
+ * Fix values for ` cider-preferred-build-tool ` variable.
9
+ * Fix value and safe property for ` cider-allow-jack-in-without-project ` variable.
8
10
9
11
### Bug fixes
10
12
Original file line number Diff line number Diff line change @@ -224,11 +224,11 @@ project.clj for leiningen or build.boot for boot, could be found.
224
224
As the Clojure CLI is bundled with Clojure itself, it's the default.
225
225
In the absence of the Clojure CLI (e.g. on Windows), we fallback
226
226
to Leiningen."
227
- :type '(choice (const ' lein )
228
- (const ' boot )
229
- (const ' clojure-cli )
230
- (const ' shadow-cljs )
231
- (const ' gradle ))
227
+ :type '(choice (const lein)
228
+ (const boot)
229
+ (const clojure-cli)
230
+ (const shadow-cljs)
231
+ (const gradle))
232
232
:group 'cider
233
233
:safe #'symbolp
234
234
:package-version '(cider . " 0.9.0" ))
@@ -242,11 +242,11 @@ variable will suppress this behavior and will select whatever build system
242
242
is indicated by the variable if present. Note, this is only when CIDER
243
243
cannot decide which of many build systems to use and will never override a
244
244
command when there is no ambiguity."
245
- :type '(choice (const ' lein )
246
- (const ' boot )
247
- (const ' clojure-cli )
248
- (const ' shadow-cljs )
249
- (const ' gradle )
245
+ :type '(choice (const lein)
246
+ (const boot)
247
+ (const clojure-cli)
248
+ (const shadow-cljs)
249
+ (const gradle)
250
250
(const :tag " Always ask" nil ))
251
251
:group 'cider
252
252
:safe #'symbolp
@@ -258,10 +258,10 @@ When set to 'warn you'd prompted to confirm the command.
258
258
When set to t `cider-jack-in' will quietly continue.
259
259
When set to nil `cider-jack-in' will fail."
260
260
:type '(choice (const :tag " always" t )
261
- (const ' warn )
261
+ (const warn)
262
262
(const :tag " never" nil ))
263
263
:group 'cider
264
- :safe #'stringp
264
+ :safe #'symbolp
265
265
:package-version '(cider . " 0.15.0" ))
266
266
267
267
(defcustom cider-known-endpoints nil
You can’t perform that action at this time.
0 commit comments