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 0e149df commit 241c5d0Copy full SHA for 241c5d0
cider-eldoc.el
@@ -76,7 +76,9 @@ POS is the index of the argument to highlight."
76
POS is the index of current argument."
77
(concat "("
78
(mapconcat (lambda (args) (cider-highlight-arglist args pos))
79
- (read arglist) " ") ")"))
+ arglist
80
+ " ")
81
+ ")"))
82
83
(defun cider-eldoc-info-in-current-sexp ()
84
"Return a list of the current sexp and the current argument index."
@@ -105,7 +107,7 @@ POS is the index of current argument."
105
107
(value (when thing
106
108
(cider-get-raw-value (cider-tooling-eval-sync form nrepl-buffer-ns)))))
109
(unless (string= value "nil")
- value)))
110
+ (read value))))
111
112
(defun cider-eldoc-arglist (thing)
113
"Return the arglist for THING."
0 commit comments