Skip to content

Commit f693f28

Browse files
committed
Address review comments (remove obsolete option)
1 parent 8e99af4 commit f693f28

File tree

2 files changed

+4
-13
lines changed

2 files changed

+4
-13
lines changed

cider.el

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -283,13 +283,6 @@ By default we favor the project-specific shadow-cljs over the system-wide."
283283
:safe #'stringp
284284
:package-version '(cider . "1.14.0"))
285285

286-
(defcustom cider-basilisp-global-options
287-
nil
288-
"Command line options used to execute Basilisp."
289-
:type 'string
290-
:safe #'stringp
291-
:package-version '(cider . "1.14.0"))
292-
293286
(defcustom cider-basilisp-parameters
294287
"nrepl-server"
295288
"Params passed to Basilisp to start an nREPL server via `cider-jack-in'."
@@ -304,7 +297,6 @@ By default we favor the project-specific shadow-cljs over the system-wide."
304297
(make-obsolete-variable 'cider-gradle-global-options 'cider-gradle-parameters "1.8.0")
305298
(make-obsolete-variable 'cider-babashka-global-options 'cider-babashka-parameters "1.8.0")
306299
(make-obsolete-variable 'cider-nbb-global-options 'cider-nbb-parameters "1.8.0")
307-
(make-obsolete-variable 'cider-basilip-global-options 'cider-basilisp-parameters "1.8.0")
308300

309301
(defcustom cider-jack-in-default
310302
(if (executable-find "clojure") 'clojure-cli 'lein)
@@ -518,7 +510,7 @@ Throws an error if PROJECT-TYPE is unknown."
518510
('shadow-cljs cider-shadow-cljs-global-options)
519511
('gradle cider-gradle-global-options)
520512
('nbb cider-nbb-global-options)
521-
('basilisp cider-basilisp-global-options)
513+
('basilisp nil)
522514
(_ (user-error "Unsupported project type `%S'" project-type))))
523515

524516
(defun cider-jack-in-params (project-type)
@@ -995,10 +987,7 @@ middleware and dependencies."
995987
global-opts
996988
(unless (seq-empty-p global-opts) " ")
997989
params))
998-
('basilisp (concat
999-
global-opts
1000-
(unless (seq-empty-p global-opts) " ")
1001-
params))
990+
('basilisp params)
1002991
(_ (error "Unsupported project type `%S'" project-type))))
1003992

1004993

doc/modules/ROOT/pages/platforms/basilisp.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
= Basilisp Integration with CIDER
22
https://github.com/basilisp-lang/basilisp[basilisp]
33

4+
since CIDER 1.14
5+
46
== Overview
57

68
Basilisp aims to enable writing Clojure programs on Python with full Python interoperability. It is highly compatible with Clojure.

0 commit comments

Comments
 (0)