[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/transient 09c911e 03/11: transient--show-manual: New fu
From: |
Jonas Bernoulli |
Subject: |
[elpa] externals/transient 09c911e 03/11: transient--show-manual: New function |
Date: |
Thu, 4 Nov 2021 21:02:17 -0400 (EDT) |
branch: externals/transient
commit 09c911e621fed58e9c8227a69163e31a596e985e
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>
transient--show-manual: New function
---
lisp/transient.el | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/lisp/transient.el b/lisp/transient.el
index b83cd7d..558ffd2 100644
--- a/lisp/transient.el
+++ b/lisp/transient.el
@@ -3280,7 +3280,7 @@ a prefix command, while porting a regular keymap to a
transient."
"Show the info manual, manpage or command doc-string.
Show the first one that is specified."
(if-let ((manual (oref obj info-manual)))
- (info manual)
+ (transient--show-manual manual)
(if-let ((manpage (oref obj man-page)))
(transient--show-manpage manpage)
(transient--describe-function (oref obj command)))))
@@ -3314,6 +3314,9 @@ location."
(describe-function fn)
(select-window (get-buffer-window (help-buffer))))
+(defun transient--show-manual (manual)
+ (info manual))
+
(defun transient--show-manpage (manpage &optional argument)
(require 'man)
(let* ((Man-notify-method 'meek)
- [elpa] externals/transient updated (74cba5a -> 7f5520b), Jonas Bernoulli, 2021/11/04
- [elpa] externals/transient 938b059 01/11: transient--show: Set point after displaying window again, Jonas Bernoulli, 2021/11/04
- [elpa] externals/transient 6276927 02/11: transient--describe-function: Move definition, Jonas Bernoulli, 2021/11/04
- [elpa] externals/transient 09c911e 03/11: transient--show-manual: New function,
Jonas Bernoulli <=
- [elpa] externals/transient 2226375 06/11: transient-show-help: Refactor and improve, Jonas Bernoulli, 2021/11/04
- [elpa] externals/transient 667488e 09/11: Extend multi-value support, Jonas Bernoulli, 2021/11/04
- [elpa] externals/transient ea5ac99 07/11: transient-show-help: Support per-object help functions, Jonas Bernoulli, 2021/11/04
- [elpa] externals/transient c9ab648 08/11: transient--show-help: Update doc-strings, Jonas Bernoulli, 2021/11/04
- [elpa] externals/transient 9b6a251 04/11: transient-show-help: Avoid this-original-command, Jonas Bernoulli, 2021/11/04
- [elpa] externals/transient df1ba0f 05/11: transient-show-help: Cosmetics, Jonas Bernoulli, 2021/11/04
- [elpa] externals/transient 202271f 10/11: Resurrect transient-files class, Jonas Bernoulli, 2021/11/04
- [elpa] externals/transient 7f5520b 11/11: Add support for non-proportional text, Jonas Bernoulli, 2021/11/04