@@ -226,7 +226,7 @@ number (e.g. (\"localhost\" . 5555)). That's useful if you're
226
226
often connecting to a remote REPL process."
227
227
:type '(choice (string )
228
228
(cons string integer))
229
- :risky #' ( stringp )
229
+ :risky #'stringp
230
230
:safe #'inf-clojure--endpoint-p
231
231
:package-version '(inf-clojure . " 2.0.0" ))
232
232
@@ -283,6 +283,7 @@ This format string should use `%s' to substitute a file name and
283
283
should result in a Clojure form that will be sent to the inferior
284
284
Clojure to load that file."
285
285
:type 'string
286
+ :safe #'stringp
286
287
:package-version '(inf-clojure . " 2.0.0" ))
287
288
288
289
(define-obsolete-variable-alias 'inf-clojure-load-command 'inf-clojure-load-form " 2.0.0" )
@@ -293,6 +294,7 @@ This format string should use `%s' to substitute a file name and
293
294
should result in a Clojure form that will be sent to the inferior
294
295
Clojure to load that file."
295
296
:type 'string
297
+ :safe #'stringp
296
298
:package-version '(inf-clojure . " 2.0.0" ))
297
299
298
300
(defcustom inf-clojure-load-form-planck " (load-file \" %s\" )"
@@ -301,6 +303,7 @@ This format string should use `%s' to substitute a file name and
301
303
should result in a Clojure form that will be sent to the inferior
302
304
Clojure to load that file."
303
305
:type 'string
306
+ :safe #'stringp
304
307
:package-version '(inf-clojure . " 2.0.0" ))
305
308
306
309
(defun inf-clojure-load-form ()
@@ -650,6 +653,7 @@ The prefix argument SWITCH-TO-REPL controls whether to switch to REPL after the
650
653
" (clojure.repl/doc %s)"
651
654
" Form to query inferior Clojure for a var's documentation."
652
655
:type 'string
656
+ :safe #'stringp
653
657
:package-version '(inf-clojure . " 2.0.0" ))
654
658
655
659
(define-obsolete-variable-alias 'inf-clojure-var-doc-command 'inf-clojure-var-doc-form " 2.0.0" )
@@ -658,12 +662,14 @@ The prefix argument SWITCH-TO-REPL controls whether to switch to REPL after the
658
662
" (lumo.repl/doc %s)"
659
663
" Lumo form to query inferior Clojure for a var's documentation."
660
664
:type 'string
665
+ :safe #'stringp
661
666
:package-version '(inf-clojure . " 2.0.0" ))
662
667
663
668
(defcustom inf-clojure-var-doc-form-planck
664
669
" (planck.repl/doc %s)"
665
670
" Planck form to query inferior Clojure for a var's documentation."
666
671
:type 'string
672
+ :safe #'stringp
667
673
:package-version '(inf-clojure . " 2.0.0" ))
668
674
669
675
(defun inf-clojure-var-doc-form ()
@@ -680,18 +686,21 @@ If you are using REPL types, it will pickup the most approapriate
680
686
" (clojure.repl/source %s)"
681
687
" Form to query inferior Clojure for a var's source."
682
688
:type 'string
689
+ :safe #'stringp
683
690
:package-version '(inf-clojure . " 2.0.0" ))
684
691
685
692
(defcustom inf-clojure-var-source-form-planck
686
693
" (planck.repl/source %s)"
687
694
" Planck form to query inferior Clojure for a var's source."
688
695
:type 'string
696
+ :safe #'stringp
689
697
:package-version '(inf-clojure . " 2.0.0" ))
690
698
691
699
(defcustom inf-clojure-var-source-form-lumo
692
700
" (lumo.repl/source %s)"
693
701
" Lumo form to query inferior Clojure for a var's source."
694
702
:type 'string
703
+ :safe #'stringp
695
704
:package-version '(inf-clojure . " 2.0.0" ))
696
705
697
706
(defun inf-clojure-var-source-form ()
@@ -715,6 +724,7 @@ If you are using REPL types, it will pickup the most approapriate
715
724
(catch Throwable t nil))"
716
725
" Form to query inferior Clojure for a function's arglists."
717
726
:type 'string
727
+ :safe #'stringp
718
728
:package-version '(inf-clojure . " 2.0.0" ))
719
729
720
730
(define-obsolete-variable-alias 'inf-clojure-arglist-command 'inf-clojure-arglists-form " 2.0.0" )
@@ -726,6 +736,7 @@ If you are using REPL types, it will pickup the most approapriate
726
736
(lumo.repl/get-arglists \" %s\" ))"
727
737
" Lumo form to query inferior Clojure for a function's arglists."
728
738
:type 'string
739
+ :safe #'stringp
729
740
:package-version '(inf-clojure . " 2.0.0" ))
730
741
731
742
(defun inf-clojure-arglists-form ()
@@ -741,6 +752,7 @@ If you are using REPL types, it will pickup the most approapriate
741
752
" (complete.core/completions \" %s\" )"
742
753
" Form to query inferior Clojure for completion candidates."
743
754
:type 'string
755
+ :safe #'stringp
744
756
:package-version '(inf-clojure . " 2.0.0" ))
745
757
746
758
(define-obsolete-variable-alias 'inf-clojure-completion-command 'inf-clojure-completion-form " 2.0.0" )
@@ -752,12 +764,14 @@ If you are using REPL types, it will pickup the most approapriate
752
764
@ret)"
753
765
" Lumo form to query inferior Clojure for completion candidates."
754
766
:type 'string
767
+ :safe #'stringp
755
768
:package-version '(inf-clojure . " 2.0.0" ))
756
769
757
770
(defcustom inf-clojure-completion-form-planck
758
771
" (planck.repl/get-completions \" %s\" )"
759
772
" Planck form to query inferior Clojure for completion candidates."
760
773
:type 'string
774
+ :safe #'stringp
761
775
:package-version '(inf-clojure . " 2.0.0" ))
762
776
763
777
(defun inf-clojure-completion-form ()
@@ -774,18 +788,21 @@ If you are using REPL types, it will pickup the most approapriate
774
788
" (clojure.repl/dir %s)"
775
789
" Form to show the public vars in a namespace."
776
790
:type 'string
791
+ :safe #'stringp
777
792
:package-version '(inf-clojure . " 2.0.0" ))
778
793
779
794
(defcustom inf-clojure-ns-vars-form-lumo
780
795
" (lumo.repl/dir %s)"
781
796
" Lumo form to show the public vars in a namespace."
782
797
:type 'string
798
+ :safe #'stringp
783
799
:package-version '(inf-clojure . " 2.0.0" ))
784
800
785
801
(defcustom inf-clojure-ns-vars-form-planck
786
802
" (planck.repl/dir %s)"
787
803
" Planck form to show the public vars in a namespace."
788
804
:type 'string
805
+ :safe #'stringp
789
806
:package-version '(inf-clojure . " 2.0.0" ))
790
807
791
808
(defun inf-clojure-ns-vars-form ()
@@ -804,18 +821,21 @@ If you are using REPL types, it will pickup the most approapriate
804
821
" (clojure.core/in-ns '%s)"
805
822
" Form to set the namespace of the inferior Clojure process."
806
823
:type 'string
824
+ :safe #'stringp
807
825
:package-version '(inf-clojure . " 2.0.0" ))
808
826
809
827
(defcustom inf-clojure-set-ns-form-planck
810
828
" (in-ns '%s)"
811
829
" Planck form to set the namespace of the inferior Clojure process."
812
830
:type 'string
831
+ :safe #'stringp
813
832
:package-version '(inf-clojure . " 2.0.0" ))
814
833
815
834
(defcustom inf-clojure-set-ns-form-lumo
816
835
" (in-ns '%s)"
817
836
" Lumo form to set the namespace of the inferior Clojure process."
818
837
:type 'string
838
+ :safe #'stringp
819
839
:package-version '(inf-clojure . " 2.0.0" ))
820
840
821
841
(defun inf-clojure-set-ns-form ()
@@ -834,19 +854,22 @@ If you are using REPL types, it will pickup the most approapriate
834
854
(println (str var)))"
835
855
" Form to invoke apropos."
836
856
:type 'string
857
+ :safe #'stringp
837
858
:package-version '(inf-clojure . " 2.0.0" ))
838
859
839
860
(defcustom inf-clojure-apropos-form-lumo
840
861
" (lumo.repl/apropos \" %s\" )"
841
862
" Planck form to invoke apropos."
842
863
:type 'string
864
+ :safe #'stringp
843
865
:package-version '(inf-clojure . " 2.0.0" ))
844
866
845
867
(defcustom inf-clojure-apropos-form-planck
846
868
" (doseq [var (sort (planck.repl/apropos \" %s\" ))]
847
869
(println (str var)))"
848
870
" Planck form to invoke apropos."
849
871
:type 'string
872
+ :safe #'stringp
850
873
:package-version '(inf-clojure . " 2.0.0" ))
851
874
852
875
(defun inf-clojure-apropos-form ()
@@ -865,12 +888,14 @@ If you are using REPL types, it will pickup the most approapriate
865
888
" (clojure.core/macroexpand '%s)"
866
889
" Form to invoke macroexpand."
867
890
:type 'string
891
+ :safe #'stringp
868
892
:package-version '(inf-clojure . " 2.0.0" ))
869
893
870
894
(defcustom inf-clojure-macroexpand-form-planck
871
895
" (macroexpand '%s)"
872
896
" Planck form to invoke macroexpand."
873
897
:type 'string
898
+ :safe #'stringp
874
899
:package-version '(inf-clojure . " 2.0.0" ))
875
900
876
901
(defun inf-clojure-macroexpand-form ()
@@ -888,12 +913,14 @@ If you are using REPL types, it will pickup the most approapriate
888
913
" (clojure.core/macroexpand-1 '%s)"
889
914
" Form to invoke macroexpand-1."
890
915
:type 'string
916
+ :safe #'stringp
891
917
:package-version '(inf-clojure . " 2.0.0" ))
892
918
893
919
(defcustom inf-clojure-macroexpand-1-form-planck
894
920
" (macroexpand-1 '%s)"
895
921
" Planck form to invoke macroexpand-1."
896
922
:type 'string
923
+ :safe #'stringp
897
924
:package-version '(inf-clojure . " 2.0.0" ))
898
925
899
926
(defun inf-clojure-macroexpand-1-form ()
@@ -1339,6 +1366,7 @@ for evaluation, therefore FORM should not include it."
1339
1366
" (find-ns 'lumo.repl)"
1340
1367
" Form to invoke in order to verify that we launched a Lumo REPL."
1341
1368
:type 'string
1369
+ :safe #'stringp
1342
1370
:package-version '(inf-clojure . " 2.0.0" ))
1343
1371
1344
1372
; ;;; Planck
@@ -1348,6 +1376,7 @@ for evaluation, therefore FORM should not include it."
1348
1376
" (find-ns 'planck.repl)"
1349
1377
" Form to invoke in order to verify that we launched a Planck REPL."
1350
1378
:type 'string
1379
+ :safe #'stringp
1351
1380
:package-version '(inf-clojure . " 2.0.0" ))
1352
1381
1353
1382
(provide 'inf-clojure )
0 commit comments