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

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

[nongnu] elpa/inf-clojure 3a93815 170/313: [Fix #105] Add planck-specifi


From: ELPA Syncer
Subject: [nongnu] elpa/inf-clojure 3a93815 170/313: [Fix #105] Add planck-specific function for show-arglist (#106)
Date: Wed, 11 Aug 2021 10:00:09 -0400 (EDT)

branch: elpa/inf-clojure
commit 3a93815ab2093d14550553fea04ba4ce92d0c7d9
Author: Erik Assum <erik@assum.net>
Commit: Bozhidar Batsov <bozhidar.batsov@gmail.com>

    [Fix #105] Add planck-specific function for show-arglist (#106)
---
 inf-clojure.el | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/inf-clojure.el b/inf-clojure.el
index f4e2362..94f26da 100644
--- a/inf-clojure.el
+++ b/inf-clojure.el
@@ -753,6 +753,13 @@ If you are using REPL types, it will pickup the most 
approapriate
   :safe #'stringp
   :package-version '(inf-clojure . "2.0.0"))
 
+(defcustom inf-clojure-arglists-form-planck
+  "(planck.repl/get-arglists \"%s\""
+  "Planck form to query inferior Clojure for a function's arglists."
+  :type 'string
+  :safe #'stringp
+  :package-version '(inf-clojure . "2.1.0"))
+
 (defun inf-clojure-arglists-form ()
   "Return the form to query inferior Clojure for arglists of a var.
 If you are using REPL types, it will pickup the most approapriate
@@ -760,6 +767,7 @@ If you are using REPL types, it will pickup the most 
approapriate
   (inf-clojure--sanitize-command
    (pcase (inf-clojure--set-repl-type (inf-clojure-proc))
      (`lumo inf-clojure-arglists-form-lumo)
+     (`planck inf-clojure-arglists-form-planck)
      (_ inf-clojure-arglists-form))))
 
 (defcustom inf-clojure-completion-form



reply via email to

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