We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82231f9 commit bd3b676Copy full SHA for bd3b676
src/refactor_nrepl/middleware.clj
@@ -66,11 +66,13 @@
66
data))
67
68
(defn- serialize-response [{:keys [serialization-format] :as msg} response]
69
- (condp = serialization-format
70
- "edn" (pr-str response)
71
- "bencode" (bencode-friendly-data response)
72
- (pr-str response) ; edn as default
73
- ))
+ (binding [*print-length* nil
+ *print-level* nil]
+ (condp = serialization-format
+ "edn" (pr-str response)
+ "bencode" (bencode-friendly-data response)
74
+ (pr-str response) ; edn as default
75
+ )))
76
77
(defn resolve-missing-reply [{:keys [transport] :as msg}]
78
(reply transport msg :candidates (resolve-missing msg) :status :done))
0 commit comments