aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorJonas Bernoulli2025-07-01 18:23:32 +0200
committerJonas Bernoulli2025-07-01 18:23:32 +0200
commitd8cdbc9f615cc5b5daa075fb5c9832fe61ffce26 (patch)
tree284b90f00aa770a7d1f9fc7b2078c22cc4bf8d40 /doc/misc
parentd4615d026bdfc0d40982070149fe9c55f0a661ee (diff)
downloademacs-d8cdbc9f615cc5b5daa075fb5c9832fe61ffce26.tar.gz
emacs-d8cdbc9f615cc5b5daa075fb5c9832fe61ffce26.zip
Update to Transient v0.9.3-8-gecd64f17
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/transient.texi12
1 files changed, 10 insertions, 2 deletions
diff --git a/doc/misc/transient.texi b/doc/misc/transient.texi
index 3bb8beddcd3..fe7f81c7930 100644
--- a/doc/misc/transient.texi
+++ b/doc/misc/transient.texi
@@ -31,7 +31,7 @@ General Public License for more details.
31@finalout 31@finalout
32@titlepage 32@titlepage
33@title Transient User and Developer Manual 33@title Transient User and Developer Manual
34@subtitle for version 0.9.1 34@subtitle for version 0.9.3
35@author Jonas Bernoulli 35@author Jonas Bernoulli
36@page 36@page
37@vskip 0pt plus 1filll 37@vskip 0pt plus 1filll
@@ -53,7 +53,7 @@ resource to get over that hurdle is Psionic K's interactive tutorial,
53available at @uref{https://github.com/positron-solutions/transient-showcase}. 53available at @uref{https://github.com/positron-solutions/transient-showcase}.
54 54
55@noindent 55@noindent
56This manual is for Transient version 0.9.1. 56This manual is for Transient version 0.9.3.
57 57
58@insertcopying 58@insertcopying
59@end ifnottex 59@end ifnottex
@@ -3033,6 +3033,14 @@ the transient menu, you will be able to yank it in another buffer.
3033 #'transient--do-stay) 3033 #'transient--do-stay)
3034@end lisp 3034@end lisp
3035 3035
3036Copying the region while not seeing the region is a bit fiddly, so a
3037dedicated command, @code{transient-copy-menu-text}, was added. You have to
3038add a binding for this command in @code{transient-map}.
3039
3040@lisp
3041(keymap-set transient-map "C-c C-w" #'transient-copy-menu-text)
3042@end lisp
3043
3036@anchor{How can I autoload prefix and suffix commands?} 3044@anchor{How can I autoload prefix and suffix commands?}
3037@appendixsec How can I autoload prefix and suffix commands? 3045@appendixsec How can I autoload prefix and suffix commands?
3038 3046