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.
apropos-special-form
1 parent 238c60c commit fa7b9d8Copy full SHA for fa7b9d8
cider-apropos.el
@@ -54,6 +54,15 @@ the symbol found by the apropos search as argument."
54
:group 'cider
55
:package-version '(cider . "0.13.0"))
56
57
+(define-button-type 'apropos-special-form
58
+ 'apropos-label "Special form"
59
+ 'apropos-short-label "s"
60
+ 'face 'apropos-misc-button
61
+ 'help-echo "mouse-2, RET: Display more help on this special form"
62
+ 'follow-link t
63
+ 'action (lambda (button)
64
+ (describe-function (button-get button 'apropos-symbol))))
65
+
66
(defun cider-apropos-doc (button)
67
"Display documentation for the symbol represented at BUTTON."
68
(cider-doc-lookup (button-get button 'apropos-symbol)))
0 commit comments