Skip to content

Commit

Permalink
manual: Regenerate
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsius committed Jun 3, 2024
1 parent 02d8d8c commit bf29019
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/transient.texi
Original file line number Diff line number Diff line change
Expand Up @@ -2360,6 +2360,20 @@ the transient popup, you will be able to yank it in another buffer.
#'transient--do-stay)
@end lisp

@anchor{How can I autoload prefix and suffix commands?}
@appendixsec How can I autoload prefix and suffix commands?

If your package only supports Emacs 30, just prefix the definition
with @code{;;;###autoload}. If your package supports released versions of
Emacs, you unfortunately have to use a long form autoload comment
as described in @ref{Autoload,,,elisp,}.

@lisp
;;;###autoload (autoload 'magit-dispatch "magit" nil t)
(transient-define-prefix magit-dispatch ()
...)
@end lisp

@anchor{How does Transient compare to prefix keys and universal arguments?}
@appendixsec How does Transient compare to prefix keys and universal arguments?

Expand Down

0 comments on commit bf29019

Please sign in to comment.