@@ -283,13 +283,6 @@ By default we favor the project-specific shadow-cljs over the system-wide."
283
283
:safe #'stringp
284
284
:package-version '(cider . " 1.14.0" ))
285
285
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
-
293
286
(defcustom cider-basilisp-parameters
294
287
" nrepl-server"
295
288
" 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."
304
297
(make-obsolete-variable 'cider-gradle-global-options 'cider-gradle-parameters " 1.8.0" )
305
298
(make-obsolete-variable 'cider-babashka-global-options 'cider-babashka-parameters " 1.8.0" )
306
299
(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" )
308
300
309
301
(defcustom cider-jack-in-default
310
302
(if (executable-find " clojure" ) 'clojure-cli 'lein )
@@ -518,7 +510,7 @@ Throws an error if PROJECT-TYPE is unknown."
518
510
('shadow-cljs cider-shadow-cljs-global-options)
519
511
('gradle cider-gradle-global-options)
520
512
('nbb cider-nbb-global-options)
521
- ('basilisp cider-basilisp-global-options )
513
+ ('basilisp nil )
522
514
(_ (user-error " Unsupported project type `%S' " project-type))))
523
515
524
516
(defun cider-jack-in-params (project-type )
@@ -995,10 +987,7 @@ middleware and dependencies."
995
987
global-opts
996
988
(unless (seq-empty-p global-opts) " " )
997
989
params))
998
- ('basilisp (concat
999
- global-opts
1000
- (unless (seq-empty-p global-opts) " " )
1001
- params))
990
+ ('basilisp params)
1002
991
(_ (error " Unsupported project type `%S' " project-type))))
1003
992
1004
993
0 commit comments