Function: transient-show-help
transient-show-help is a byte-compiled function defined in
transient.el.
Signature
(transient-show-help OBJ)
Documentation
Show documentation for the command represented by OBJ.
Implementations
(transient-show-help CMD) in `transient.el'.
Show the command doc-string.
(transient-show-help (OBJ transient-infix)) in `transient.el'.
Call `show-help' if non-nil, else show the `man-page' if non-nil, else use `describe-function'. When showing the manpage, then try to jump to the correct location.
(transient-show-help (OBJ transient-suffix)) in `transient.el'.
Call `show-help' if non-nil, else use `describe-function'. Also used to dispatch showing documentation for the current prefix. If the suffix is a sub-prefix, then also call the prefix method.
(transient-show-help (OBJ transient-prefix)) in `transient.el'.
Call `show-help' if non-nil, else show `info-manual', if non-nil, else show the `man-page' if non-nil, else use `describe-function'.
Source Code
;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
;;; Help
(cl-defgeneric transient-show-help (obj)
"Show documentation for the command represented by OBJ.")