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 20854fc commit 1cd7d8cCopy full SHA for 1cd7d8c
cider-util.el
@@ -510,7 +510,10 @@ restore it properly when going back."
510
(if tail (setcdr tail nil))))
511
(setq help-xref-stack-item item)))
512
513
-(defcustom cider-doc-xref-regexp "`\\(.*?\\)`"
+(defcustom cider-doc-xref-regexp
514
+ (rx (or (: "`" (group-n 1 (+ (not space))) "`") ; `var`
515
+ (: "[[" (group-n 1 (+ (not space))) "]]") ; [[var]]
516
+ (group-n 1 (+ (not space)) "/" (+ (not space))))) ; Fully qualified
517
"The regexp used to search Clojure vars in doc buffers."
518
:type 'regexp
519
:safe #'stringp
0 commit comments