Function: actypes::man-show
actypes::man-show is an interactive and byte-compiled function defined
in hactypes.el.
Signature
(actypes::man-show TOPIC)
Documentation
Display man page on TOPIC, which may be of the form <command>(<section>).
Uses hpath:display-where setting to control where the man page is displayed.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hactypes.el
(defact man-show (topic)
"Display man page on TOPIC, which may be of the form <command>(<section>).
Uses `hpath:display-where' setting to control where the man page is displayed."
(interactive "sManual topic: ")
(require 'man)
(defvar Man-notify-method)
(let ((Man-notify-method 'meek))
(hpath:display-buffer (man topic))))