emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/inf-clojure ebd1494 135/313: Support lumo's apropos


From: ELPA Syncer
Subject: [nongnu] elpa/inf-clojure ebd1494 135/313: Support lumo's apropos
Date: Wed, 11 Aug 2021 10:00:02 -0400 (EDT)

branch: elpa/inf-clojure
commit ebd149455913a08597b555a68cac0f9a7a536d23
Author: Andrea Richiardi <a.richiardi.work@gmail.com>
Commit: Bozhidar Batsov <bozhidar.batsov@gmail.com>

    Support lumo's apropos
---
 inf-clojure.el | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/inf-clojure.el b/inf-clojure.el
index b558620..ee5dd9e 100644
--- a/inf-clojure.el
+++ b/inf-clojure.el
@@ -783,6 +783,12 @@ If you are using REPL types, it will pickup the most 
approapriate
   :type 'string
   :package-version '(inf-clojure . "2.0.0"))
 
+(defcustom inf-clojure-apropos-form-lumo
+  "(lumo.repl/apropos \"%s\")"
+  "Planck form to invoke apropos."
+  :type 'string
+  :package-version '(inf-clojure . "2.0.0"))
+
 (defcustom inf-clojure-apropos-form-planck
   "(doseq [var (sort (planck.repl/apropos \"%s\"))]
      (println (str var)))"
@@ -796,6 +802,7 @@ If you are using REPL types, it will pickup the most 
approapriate
 `inf-clojure-ns-vars-form` variant."
   (inf-clojure--sanitize-command
    (pcase (inf-clojure--set-repl-type (inf-clojure-proc))
+     (`lumo inf-clojure-apropos-form-lumo)
      (`planck inf-clojure-apropos-form-planck)
      (_ inf-clojure-apropos-form))))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]