File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -759,14 +759,20 @@ If you are using REPL types, it will pickup the most approapriate
759
759
:type 'string
760
760
:package-version '(inf-clojure . " 2.0.0" ))
761
761
762
+ (defcustom inf-clojure-set-ns-form-lumo
763
+ " (in-ns '%s)"
764
+ " Lumo form to set the namespace of the inferior Clojure process."
765
+ :type 'string
766
+ :package-version '(inf-clojure . " 2.0.0" ))
767
+
762
768
(defun inf-clojure-set-ns-form ()
763
769
" Return the form to set the ns of the inferior Clojure process.
764
770
If you are using REPL types, it will pickup the most approapriate
765
771
`inf-clojure-set-ns-form` variant."
766
- (inf-clojure--sanitize-command
767
- ( pcase ( inf-clojure-- set-repl-type (inf-clojure-proc) )
768
- (`planck inf-clojure-set-ns-form-planck )
769
- (_ inf-clojure-set-ns-form) )))
772
+ (pcase ( inf-clojure--set-repl-type (inf-clojure-proc))
773
+ (`planck inf-clojure-set-ns-form-planck )
774
+ (`lumo inf-clojure-set-ns-form-lumo )
775
+ (_ inf-clojure-set-ns-form)))
770
776
771
777
(define-obsolete-variable-alias 'inf-clojure-set-ns-command 'inf-clojure-set-ns-form " 2.0.0" )
772
778
You can’t perform that action at this time.
0 commit comments