File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 22
22
* [ #3145 ] ( https://github.com/clojure-emacs/cider/pull/3145 ) : Allow fallback to other ` xref ` backends if cider-nrepl is not loaded.
23
23
* [ #3148 ] ( https://github.com/clojure-emacs/cider/pull/3148 ) : Fix eval result overlays at point inheriting the faces of following text.
24
24
* [ #3133 ] ( https://github.com/clojure-emacs/cider/issues/3133 ) : Respect ` cider-injected-middleware-version ` .
25
+ * [ #3163 ] ( https://github.com/clojure-emacs/cider/pull/3163 ) : ` cider-clojuredocs ` : prevent redundant prompt for a symbol.
25
26
26
27
## 1.2.0 (2021-12-22)
27
28
Original file line number Diff line number Diff line change @@ -145,7 +145,11 @@ opposite of what that option dictates."
145
145
(let ((docs (cider-sync-request:clojuredocs-lookup (cider-current-ns) sym)))
146
146
(pop-to-buffer (cider-create-clojuredocs-buffer (cider-clojuredocs--content docs)))
147
147
; ; highlight the symbol in question in the docs buffer
148
- (highlight-regexp (cadr (split-string sym " /" )) 'bold )))
148
+ (highlight-regexp
149
+ (regexp-quote
150
+ (or (cadr (split-string sym " /" ))
151
+ sym))
152
+ 'bold )))
149
153
150
154
;;;### autoload
151
155
(defun cider-clojuredocs (&optional arg )
You can’t perform that action at this time.
0 commit comments