[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/transient 24a1be509b 02/25: docs: Fix word order
From: |
Jonas Bernoulli |
Subject: |
[elpa] externals/transient 24a1be509b 02/25: docs: Fix word order |
Date: |
Tue, 3 Dec 2024 14:35:00 -0500 (EST) |
branch: externals/transient
commit 24a1be509bdefd3ceb116feeef4d5cbc47ecc730
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>
docs: Fix word order
Replace "also see" with "see also". Before links in the manual that
sadly isn't possible because, if the word before a link is neither
"see" not "in", makeinfo injects "see" before the link. While wrong,
"also see <link>" is still better than "see also see <link>".
---
docs/transient.org | 2 +-
docs/transient.texi | 2 +-
lisp/transient.el | 16 ++++++++--------
3 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/docs/transient.org b/docs/transient.org
index ef4c23ce05..1b4d1b8e59 100644
--- a/docs/transient.org
+++ b/docs/transient.org
@@ -2231,7 +2231,7 @@ potential prefix keys can be used for transient-specific
commands
particular is a prefix that I want to (and already do) use for Magit, and
also using that for a common command would prevent me from doing so.
-(Also see the next question.)
+(See also the next question.)
** Why does {{{kbd(q)}}} not quit popups anymore?
:PROPERTIES:
diff --git a/docs/transient.texi b/docs/transient.texi
index 8aa4b9e75f..9522af63b1 100644
--- a/docs/transient.texi
+++ b/docs/transient.texi
@@ -2540,7 +2540,7 @@ potential prefix keys can be used for transient-specific
commands
particular is a prefix that I want to (and already do) use for Magit, and
also using that for a common command would prevent me from doing so.
-(Also see the next question.)
+(See also the next question.)
@anchor{Why does @kbd{q} not quit popups anymore?}
@appendixsec Why does @kbd{q} not quit popups anymore?
diff --git a/lisp/transient.el b/lisp/transient.el
index 84939a912e..8e4697fd08 100644
--- a/lisp/transient.el
+++ b/lisp/transient.el
@@ -358,7 +358,7 @@ used that breaks that relationship.
This option is intended for users who use a variable-pitch
font for the `default' face.
-Also see `transient-force-fixed-pitch'."
+See also `transient-force-fixed-pitch'."
:package-version '(transient . "0.4.0")
:group 'transient
:type 'boolean)
@@ -371,7 +371,7 @@ you might still want to use a monospaced font in transient's
popup buffer. Setting this option to t causes `default' to
be remapped to `fixed-pitch' in that buffer.
-Also see `transient-align-variable-pitch'."
+See also `transient-align-variable-pitch'."
:package-version '(transient . "0.2.0")
:group 'transient
:type 'boolean)
@@ -517,7 +517,7 @@ See info node `(transient)Enabling and Disabling Suffixes'."
(or (and (not (eq color 'unspecified)) color)
"grey60")))))
"Face optionally used to highlight suffixes on higher levels.
-Also see option `transient-highlight-higher-levels'."
+See also option `transient-highlight-higher-levels'."
:group 'transient-faces)
(defface transient-delimiter '((t :inherit shadow))
@@ -579,14 +579,14 @@ character used to separate possible values from each
other."
`((t :box ( :line-width ,(if (>= emacs-major-version 28) (cons -1 -1) -1)
:color "cyan")))
"Face optionally used to highlight keys conflicting with short-argument.
-Also see option `transient-highlight-mismatched-keys'."
+See also option `transient-highlight-mismatched-keys'."
:group 'transient-faces)
(defface transient-mismatched-key
`((t :box ( :line-width ,(if (>= emacs-major-version 28) (cons -1 -1) -1)
:color "magenta")))
"Face optionally used to highlight keys without a short-argument.
-Also see option `transient-highlight-mismatched-keys'."
+See also option `transient-highlight-mismatched-keys'."
:group 'transient-faces)
;;; Persistence
@@ -1283,7 +1283,7 @@ in regular keymaps or by using
`execute-extended-command')."
(defalias 'transient--suffix-only #'ignore
"Ignore ARGUMENTS, do nothing, and return nil.
-Also see `transient-command-completion-not-suffix-only-p'.
+See also `transient-command-completion-not-suffix-only-p'.
Only use this alias as the value of the `completion-predicate'
symbol property.")
@@ -1769,7 +1769,7 @@ to `transient-predicate-map'."
"Top-level keymap used by all transients.
If you add a new command here, then you must also add a binding
-to `transient-predicate-map'. Also see `transient-base-map'.")
+to `transient-predicate-map'. See also `transient-base-map'.")
(defvar-keymap transient-edit-map
:doc "Keymap that is active while a transient in is in \"edit mode\"."
@@ -3521,7 +3521,7 @@ Intended for use by transient suffix commands."
(cl-defgeneric transient-set-value (obj)
"Persist the value of the transient prefix OBJ.
Only intended for use by `transient-set'.
-Also see `transient-prefix-set'.")
+See also `transient-prefix-set'.")
(cl-defmethod transient-set-value ((obj transient-prefix))
(oset (oref obj prototype) value (transient-get-value))
- [elpa] externals/transient deb1569c9c 07/25: transient-prefix-value: New generic function, (continued)
- [elpa] externals/transient deb1569c9c 07/25: transient-prefix-value: New generic function, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient c93c35f567 13/25: transient--show: Fix window height for more setups, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient aaefee0d01 03/25: Remove comments mentioning a legacy Emacs bug, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient 3b28a2f8d6 12/25: transient-hide-during-minibuffer-read: Change default to t, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient 3539231b98 20/25: fixup(e3e2e111): Improve options for showing menu during minibuffer use, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient 645f1b2cd4 25/25: transient--stack-push: Preserve the value, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient d64b73efbc 17/25: transient-scope: Return nil if all prefixes are nil, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient ecdee415fb 16/25: transient-scope: Fully revert behavior with no argument, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient b3f3aa034a 09/25: transient-init-value: Define noop method for transient-suffix, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient 4130f62966 11/25: transient--show: Run transient-setup-buffer-hook later, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient 24a1be509b 02/25: docs: Fix word order,
Jonas Bernoulli <=
- [elpa] externals/transient d0cba152dc 06/25: transient-scope: Add PREFIX argument, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient 75f0aef8d7 04/25: Add new "Scope" top-level section, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient 9259f77e14 05/25: transient-args: Allow PREFIX to be a list of prefixes, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient 6b83a02151 08/25: transient-init-scope: Add stub method for prefixes, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient 37be15575a 23/25: fixup(e3e2e111): Improve options for showing menu during minibuffer use, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient 4de5812992 15/25: transient-scope: Fix recent regression, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient 51f25c21b8 24/25: Fix typos in documentation, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient cb5e1e5594 18/25: transient-scope: Redesign, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient 23cb5b109d 22/25: transient-prefix: Add mode-line-format slot, Jonas Bernoulli, 2024/12/03
- [elpa] externals/transient e3e2e1112f 19/25: Improve options for showing menu during minibuffer use, Jonas Bernoulli, 2024/12/03