[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/transient 44792c2bf9 03/26: manual: Copy-edit
|
From: |
Jonas Bernoulli |
|
Subject: |
[elpa] externals/transient 44792c2bf9 03/26: manual: Copy-edit |
|
Date: |
Sun, 26 Nov 2023 19:41:58 -0500 (EST) |
branch: externals/transient
commit 44792c2bf91e5e1b72b854ebafc220ac6ac89b74
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>
manual: Copy-edit
---
docs/transient.org | 20 ++++++++++----------
docs/transient.texi | 20 ++++++++++----------
2 files changed, 20 insertions(+), 20 deletions(-)
diff --git a/docs/transient.org b/docs/transient.org
index 8b13efb4fc..d2d83a61c7 100644
--- a/docs/transient.org
+++ b/docs/transient.org
@@ -114,18 +114,18 @@ looks a bit like this:
This is a simplified version of ~magit-tag~. Info manuals do not
support images or colored text, so the above “screenshot” lacks some
information; in practice you would be able to tell whether the
-arguments ~--force~ and ~--annotate~ are enabled or not based on their
+arguments ~--force~ and ~--annotate~ are enabled or not, based on their
color.
#+end_quote
#+cindex: command dispatchers
Transient can be used to implement simple “command dispatchers”. The
main benefit then is that the user can see all the available commands
-in a popup buffer. That is useful by itself because it frees the user
-from having to remember all the keys that are valid after a certain
-prefix key or command. Magit's ~magit-dispatch~ (on {{{kbd(C-x M-g)}}})
command is
-an example of using Transient to merely implement a command
-dispatcher.
+in a popup buffer, which can be thought of as a “menus”. That is
+useful by itself because it frees the user from having to remember all
+the keys that are valid after a certain prefix key or command.
+Magit's ~magit-dispatch~ (on {{{kbd(C-x M-g)}}}) command is an example of using
+Transient to merely implement a command dispatcher.
In addition to that, Transient also allows users to interactively pass
arguments to commands. These arguments can be much more complex than
@@ -2013,10 +2013,10 @@ Yes, see ~transient-display-buffer-action~ in
[[*Configuration]].
:UNNUMBERED: notoc
:END:
-To be able to mark text in any transient popup buffer using the mouse,
-you have to add the following binding. Note that the region won't be
-visualized, while doing so. After you have quit the transient popup,
-you will be able to yank it another buffer.
+To be able to mark text in Transient's popup buffer using the mouse,
+you have to add the below binding. Note that for technical reasons,
+the region won't be visualized, while doing so. After you have quit
+the transient popup, you will be able to yank it in another buffer.
#+begin_src emacs-lisp
(keymap-set transient-predicate-map
diff --git a/docs/transient.texi b/docs/transient.texi
index 3fae6438fa..1e280ff8c5 100644
--- a/docs/transient.texi
+++ b/docs/transient.texi
@@ -213,7 +213,7 @@ looks a bit like this:
This is a simplified version of @code{magit-tag}. Info manuals do not
support images or colored text, so the above ``screenshot'' lacks some
information; in practice you would be able to tell whether the
-arguments @code{--force} and @code{--annotate} are enabled or not based on
their
+arguments @code{--force} and @code{--annotate} are enabled or not, based on
their
color.
@end quotation
@@ -221,11 +221,11 @@ color.
@cindex command dispatchers
Transient can be used to implement simple ``command dispatchers''. The
main benefit then is that the user can see all the available commands
-in a popup buffer. That is useful by itself because it frees the user
-from having to remember all the keys that are valid after a certain
-prefix key or command. Magit's @code{magit-dispatch} (on @kbd{C-x M-g})
command is
-an example of using Transient to merely implement a command
-dispatcher.
+in a popup buffer, which can be thought of as a ``menus''. That is
+useful by itself because it frees the user from having to remember all
+the keys that are valid after a certain prefix key or command.
+Magit's @code{magit-dispatch} (on @kbd{C-x M-g}) command is an example of using
+Transient to merely implement a command dispatcher.
In addition to that, Transient also allows users to interactively pass
arguments to commands. These arguments can be much more complex than
@@ -2297,10 +2297,10 @@ Yes, see @code{transient-display-buffer-action} in
@ref{Configuration}.
@anchor{How can I copy text from the popup buffer?}
@appendixsec How can I copy text from the popup buffer?
-To be able to mark text in any transient popup buffer using the mouse,
-you have to add the following binding. Note that the region won't be
-visualized, while doing so. After you have quit the transient popup,
-you will be able to yank it another buffer.
+To be able to mark text in Transient's popup buffer using the mouse,
+you have to add the below binding. Note that for technical reasons,
+the region won't be visualized, while doing so. After you have quit
+the transient popup, you will be able to yank it in another buffer.
@lisp
(keymap-set transient-predicate-map
- [elpa] externals/transient updated (57bb749f98 -> af6eb31054), Jonas Bernoulli, 2023/11/26
- [elpa] externals/transient 7d9d639cdf 01/26: make: Only append newline to transient.texi if missing, Jonas Bernoulli, 2023/11/26
- [elpa] externals/transient ff496fe5ad 04/26: manual: Use "documentation string" instead of "doc string", Jonas Bernoulli, 2023/11/26
- [elpa] externals/transient 44792c2bf9 03/26: manual: Copy-edit,
Jonas Bernoulli <=
- [elpa] externals/transient 163d0a83f7 02/26: manual: Regenerate texi file, Jonas Bernoulli, 2023/11/26
- [elpa] externals/transient 004ca25946 06/26: Move definition of functions that handle pre-commands, Jonas Bernoulli, 2023/11/26
- [elpa] externals/transient f23f51e24e 07/26: Rename transient--{do => call}-pre-command, Jonas Bernoulli, 2023/11/26
- [elpa] externals/transient 37307c1b8c 05/26: transient-prefix-object: New function, Jonas Bernoulli, 2023/11/26
- [elpa] externals/transient 4c1cda9984 08/26: Rename transient-get-{predicate-for => pre-command}, Jonas Bernoulli, 2023/11/26
- [elpa] externals/transient f4b4dd42b9 14/26: Add transient--do-leave's missing color setting, Jonas Bernoulli, 2023/11/26
- [elpa] externals/transient 0509c90e53 11/26: transient--key-face: New function, Jonas Bernoulli, 2023/11/26
- [elpa] externals/transient 05754d1576 13/26: Rearrange pre-command color settings, Jonas Bernoulli, 2023/11/26
- [elpa] externals/transient 98d8cf8016 15/26: Fix transient--do-quit-one's color setting, Jonas Bernoulli, 2023/11/26
- [elpa] externals/transient 9c00fae158 10/26: transient--add-face: Move definition, Jonas Bernoulli, 2023/11/26