From 4fd24b1e767c776ca9fe913121ecc55abe103c67 Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Sat, 18 Jul 2020 12:39:32 +0300 Subject: [PATCH] Improve the info fallback eval form --- cider-client.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cider-client.el b/cider-client.el index 3f820ec26..aef8e7f3d 100644 --- a/cider-client.el +++ b/cider-client.el @@ -430,6 +430,8 @@ contain a `candidates' key, it is returned as is." (update :ns str) (update :name str) (update :file (comp str clojure.java.io/resource)) + (cond-> (:macro m) (update :macro str)) + (cond-> (:special-form m) (update :special-form str)) (assoc :arglists-str (str (:arglists info))) (clojure.walk/stringify-keys))))) ")