config

Personal configuration.
git clone git://code.dwrz.net/config
Log | Files | Refs

transient.info (155357B)


      1 This is transient.info, produced by makeinfo version 6.8 from
      2 transient.texi.
      3 
      4      Copyright (C) 2018–2024 Free Software Foundation, Inc.
      5 
      6      You can redistribute this document and/or modify it under the terms
      7      of the GNU General Public License as published by the Free Software
      8      Foundation, either version 3 of the License, or (at your option)
      9      any later version.
     10 
     11      This document is distributed in the hope that it will be useful,
     12      but WITHOUT ANY WARRANTY; without even the implied warranty of
     13      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     14      General Public License for more details.
     15 
     16 INFO-DIR-SECTION Emacs misc features
     17 START-INFO-DIR-ENTRY
     18 * Transient: (transient). Transient Commands.
     19 END-INFO-DIR-ENTRY
     20 
     21 
     22 File: transient.info,  Node: Top,  Next: Introduction,  Up: (dir)
     23 
     24 Transient User and Developer Manual
     25 ***********************************
     26 
     27 Transient is the library used to implement the keyboard-driven “menus”
     28 in Magit.  It is distributed as a separate package, so that it can be
     29 used to implement similar menus in other packages.
     30 
     31    This manual can be bit hard to digest when getting started.  A useful
     32 resource to get over that hurdle is Psionic K’s interactive tutorial,
     33 available at <https://github.com/positron-solutions/transient-showcase>.
     34 
     35 This manual is for Transient v0.7.4-6-gf4aac84.
     36 
     37      Copyright (C) 2018–2024 Free Software Foundation, Inc.
     38 
     39      You can redistribute this document and/or modify it under the terms
     40      of the GNU General Public License as published by the Free Software
     41      Foundation, either version 3 of the License, or (at your option)
     42      any later version.
     43 
     44      This document is distributed in the hope that it will be useful,
     45      but WITHOUT ANY WARRANTY; without even the implied warranty of
     46      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     47      General Public License for more details.
     48 
     49 * Menu:
     50 
     51 * Introduction::
     52 * Usage::
     53 * Modifying Existing Transients::
     54 * Defining New Commands::
     55 * Classes and Methods::
     56 * FAQ::
     57 * Keystroke Index::
     58 * Command and Function Index::
     59 * Variable Index::
     60 * Concept Index::
     61 * GNU General Public License::
     62 
     63 — The Detailed Node Listing —
     64 
     65 Usage
     66 
     67 * Invoking Transients::
     68 * Aborting and Resuming Transients::
     69 * Common Suffix Commands::
     70 * Saving Values::
     71 * Using History::
     72 * Getting Help for Suffix Commands::
     73 * Enabling and Disabling Suffixes::
     74 * Other Commands::
     75 * Configuration::
     76 
     77 Defining New Commands
     78 
     79 * Technical Introduction::
     80 * Defining Transients::
     81 * Binding Suffix and Infix Commands::
     82 * Defining Suffix and Infix Commands::
     83 * Using Infix Arguments::
     84 * Transient State::
     85 
     86 Binding Suffix and Infix Commands
     87 
     88 * Group Specifications::
     89 * Suffix Specifications::
     90 
     91 
     92 Classes and Methods
     93 
     94 * Group Classes::
     95 * Group Methods::
     96 * Prefix Classes::
     97 * Suffix Classes::
     98 * Suffix Methods::
     99 * Prefix Slots::
    100 * Suffix Slots::
    101 * Predicate Slots::
    102 
    103 Suffix Methods
    104 
    105 * Suffix Value Methods::
    106 * Suffix Format Methods::
    107 
    108 
    109 
    110 
    111 File: transient.info,  Node: Introduction,  Next: Usage,  Prev: Top,  Up: Top
    112 
    113 1 Introduction
    114 **************
    115 
    116 Transient is the library used to implement the keyboard-driven “menus”
    117 in Magit.  It is distributed as a separate package, so that it can be
    118 used to implement similar menus in other packages.
    119 
    120    This manual can be bit hard to digest when getting started.  A useful
    121 resource to get over that hurdle is Psionic K’s interactive tutorial,
    122 available at <https://github.com/positron-solutions/transient-showcase>.
    123 
    124 Some things that Transient can do
    125 =================================
    126 
    127    • Display current state of arguments
    128    • Display and manage lifecycle of modal bindings
    129    • Contextual user interface
    130    • Flow control for wizard-like composition of interactive forms
    131    • History & persistence
    132    • Rendering arguments for controlling CLI programs
    133 
    134 Complexity in CLI programs
    135 ==========================
    136 
    137 Complexity tends to grow with time.  How do you manage the complexity of
    138 commands?  Consider the humble shell command ‘ls’.  It now has over
    139 _fifty_ command line options.  Some of these are boolean flags (‘ls
    140 -l’).  Some take arguments (‘ls --sort=s’).  Some have no effect unless
    141 paired with other flags (‘ls -lh’).  Some are mutually exclusive.  Some
    142 shell commands even have so many options that they introduce
    143 _subcommands_ (‘git branch’, ‘git commit’), each with their own rich set
    144 of options (‘git branch -f’).
    145 
    146 Using Transient for composing interactive commands
    147 ==================================================
    148 
    149 What about Emacs commands used interactively?  How do these handle
    150 options?  One solution is to make many versions of the same command, so
    151 you don’t need to!  Consider: ‘delete-other-windows’ vs.
    152 ‘delete-other-windows-vertically’ (among many similar examples).
    153 
    154    Some Emacs commands will simply prompt you for the next "argument"
    155 (‘M-x switch-to-buffer’).  Another common solution is to use prefix
    156 arguments which usually start with ‘C-u’.  Sometimes these are sensibly
    157 numerical in nature (‘C-u 4 M-x forward-paragraph’ to move forward 4
    158 paragraphs).  But sometimes they function instead as boolean "switches"
    159 (‘C-u C-SPACE’ to jump to the last mark instead of just setting it, ‘C-u
    160 C-u C-SPACE’ to unconditionally set the mark).  Since there aren’t many
    161 standards for the use of prefix options, you have to read the command’s
    162 documentation to find out what the possibilities are.
    163 
    164    But when an Emacs command grows to have a truly large set of options
    165 and arguments, with dependencies between them, lots of option values,
    166 etc., these simple approaches just don’t scale.  Transient is designed
    167 to solve this issue.  Think of it as the humble prefix argument ‘C-u’,
    168 _raised to the power of 10_.  Like ‘C-u’, it is key driven.  Like the
    169 shell, it supports boolean "flag" options, options that take arguments,
    170 and even "sub-commands", with their own options.  But instead of
    171 searching through a man page or command documentation, well-designed
    172 transients _guide_ their users to the relevant set of options (and even
    173 their possible values!)  directly, taking into account any important
    174 pre-existing Emacs settings.  And while for shell commands like ‘ls’,
    175 there is only one way to "execute" (hit ‘Return’!), transients can
    176 "execute" using multiple different keys tied to one of many
    177 self-documenting _actions_ (imagine having 5 different colored return
    178 keys on your keyboard!).  Transients make navigating and setting large,
    179 complex groups of command options and arguments easy.  Fun even.  Once
    180 you’ve tried it, it’s hard to go back to the ‘C-u what can I do here
    181 again?’ way.
    182 
    183 
    184 File: transient.info,  Node: Usage,  Next: Modifying Existing Transients,  Prev: Introduction,  Up: Top
    185 
    186 2 Usage
    187 *******
    188 
    189 * Menu:
    190 
    191 * Invoking Transients::
    192 * Aborting and Resuming Transients::
    193 * Common Suffix Commands::
    194 * Saving Values::
    195 * Using History::
    196 * Getting Help for Suffix Commands::
    197 * Enabling and Disabling Suffixes::
    198 * Other Commands::
    199 * Configuration::
    200 
    201 
    202 File: transient.info,  Node: Invoking Transients,  Next: Aborting and Resuming Transients,  Up: Usage
    203 
    204 2.1 Invoking Transients
    205 =======================
    206 
    207 A transient prefix command is invoked like any other command by pressing
    208 the key that is bound to that command.  The main difference to other
    209 commands is that a transient prefix command activates a transient
    210 keymap, which temporarily binds the transient’s infix and suffix
    211 commands.  Bindings from other keymaps may, or may not, be disabled
    212 while the transient state is in effect.
    213 
    214    There are two kinds of commands that are available after invoking a
    215 transient prefix command; infix and suffix commands.  Infix commands set
    216 some value (which is then shown in a popup buffer), without leaving the
    217 transient.  Suffix commands, on the other hand, usually quit the
    218 transient and they may use the values set by the infix commands, i.e.,
    219 the infix *arguments*.
    220 
    221    Instead of setting arguments to be used by a suffix command, infix
    222 commands may also set some value by side-effect, e.g., by setting the
    223 value of some variable.
    224 
    225 
    226 File: transient.info,  Node: Aborting and Resuming Transients,  Next: Common Suffix Commands,  Prev: Invoking Transients,  Up: Usage
    227 
    228 2.2 Aborting and Resuming Transients
    229 ====================================
    230 
    231 To quit the transient without invoking a suffix command press ‘C-g’.
    232 
    233    Key bindings in transient keymaps may be longer than a single event.
    234 After pressing a valid prefix key, all commands whose bindings do not
    235 begin with that prefix key are temporarily unavailable and grayed out.
    236 To abort the prefix key press ‘C-g’ (which in this case only quits the
    237 prefix key, but not the complete transient).
    238 
    239    A transient prefix command can be bound as a suffix of another
    240 transient.  Invoking such a suffix replaces the current transient state
    241 with a new transient state, i.e., the available bindings change and the
    242 information displayed in the popup buffer is updated accordingly.
    243 Pressing ‘C-g’ while a nested transient is active only quits the
    244 innermost transient, causing a return to the previous transient.
    245 
    246    ‘C-q’ or ‘C-z’ on the other hand always exits all transients.  If you
    247 use the latter, then you can later resume the stack of transients using
    248 ‘M-x transient-resume’.
    249 
    250 ‘C-g’ (‘transient-quit-seq’)
    251 ‘C-g’ (‘transient-quit-one’)
    252      This key quits the currently active incomplete key sequence, if
    253      any, or else the current transient.  When quitting the current
    254      transient, it returns to the previous transient, if any.
    255 
    256    Transient’s predecessor bound ‘q’ instead of ‘C-g’ to the quit
    257 command.  To learn how to get that binding back see
    258 ‘transient-bind-q-to-quit’’s documentation string.
    259 
    260 ‘C-q’ (‘transient-quit-all’)
    261      This command quits the currently active incomplete key sequence, if
    262      any, and all transients, including the active transient and all
    263      suspended transients, if any.
    264 
    265 ‘C-z’ (‘transient-suspend’)
    266      Like ‘transient-quit-all’, this command quits an incomplete key
    267      sequence, if any, and all transients.  Additionally, it saves the
    268      stack of transients so that it can easily be resumed (which is
    269      particularly useful if you quickly need to do “something else” and
    270      the stack is deeper than a single transient, and/or you have
    271      already changed the values of some infix arguments).
    272 
    273      Note that only a single stack of transients can be saved at a time.
    274      If another stack is already saved, then saving a new stack discards
    275      the previous stack.
    276 
    277 ‘M-x transient-resume’
    278      This command resumes the previously suspended stack of transients,
    279      if any.
    280 
    281 
    282 File: transient.info,  Node: Common Suffix Commands,  Next: Saving Values,  Prev: Aborting and Resuming Transients,  Up: Usage
    283 
    284 2.3 Common Suffix Commands
    285 ==========================
    286 
    287 A few shared suffix commands are available in all transients.  These
    288 suffix commands are not shown in the popup buffer by default.
    289 
    290    This includes the aborting commands mentioned in the previous
    291 section, as well as some other commands that are all bound to ‘C-x KEY’.
    292 After ‘C-x’ is pressed, a section featuring all these common commands is
    293 temporarily shown in the popup buffer.  After invoking one of them, the
    294 section disappears again.  Note, however, that one of these commands is
    295 described as “Show common permanently”; invoke that if you want the
    296 common commands to always be shown for all transients.
    297 
    298 ‘C-x t’ (‘transient-toggle-common’)
    299      This command toggles whether the generic commands that are common
    300      to all transients are always displayed or only after typing the
    301      incomplete prefix key sequence ‘C-x’.  This only affects the
    302      current Emacs session.
    303 
    304  -- User Option: transient-show-common-commands
    305      This option controls whether shared suffix commands are shown
    306      alongside the transient-specific infix and suffix commands.  By
    307      default, the shared commands are not shown to avoid overwhelming
    308      the user with too many options.
    309 
    310      While a transient is active, pressing ‘C-x’ always shows the common
    311      commands.  The value of this option can be changed for the current
    312      Emacs session by typing ‘C-x t’ while a transient is active.
    313 
    314    The other common commands are described in either the previous or in
    315 one of the following sections.
    316 
    317    Some of Transient’s key bindings differ from the respective bindings
    318 of Magit-Popup; see *note FAQ:: for more information.
    319 
    320 
    321 File: transient.info,  Node: Saving Values,  Next: Using History,  Prev: Common Suffix Commands,  Up: Usage
    322 
    323 2.4 Saving Values
    324 =================
    325 
    326 After setting the infix arguments in a transient, the user can save
    327 those arguments for future invocations.
    328 
    329    Most transients will start out with the saved arguments when they are
    330 invoked.  There are a few exceptions, though.  Some transients are
    331 designed so that the value that they use is stored externally as the
    332 buffer-local value of some variable.  Invoking such a transient again
    333 uses the buffer-local value.  (1)
    334 
    335    If the user does not save the value and just exits using a regular
    336 suffix command, then the value is merely saved to the transient’s
    337 history.  That value won’t be used when the transient is next invoked,
    338 but it is easily accessible (see *note Using History::).
    339 
    340 ‘C-x s’ (‘transient-set’)
    341      This command saves the value of the active transient for this Emacs
    342      session.
    343 
    344 ‘C-x C-s’ (‘transient-save’)
    345      Save the value of the active transient persistently across Emacs
    346      sessions.
    347 
    348 ‘C-x C-k’ (‘transient-reset’)
    349      Clear the set and saved values of the active transient.
    350 
    351  -- User Option: transient-values-file
    352      This option names the file that is used to persist the values of
    353      transients between Emacs sessions.
    354 
    355    ---------- Footnotes ----------
    356 
    357    (1) ‘magit-diff’ and ‘magit-log’ are two prominent examples, and
    358 their handling of buffer-local values is actually a bit more complicated
    359 than outlined above and even customizable.
    360 
    361 
    362 File: transient.info,  Node: Using History,  Next: Getting Help for Suffix Commands,  Prev: Saving Values,  Up: Usage
    363 
    364 2.5 Using History
    365 =================
    366 
    367 Every time the user invokes a suffix command the transient’s current
    368 value is saved to its history.  These values can be cycled through the
    369 same way one can cycle through the history of commands that read
    370 user-input in the minibuffer.
    371 
    372 ‘C-M-p’ (‘transient-history-prev’)
    373 ‘C-x p’
    374      This command switches to the previous value used for the active
    375      transient.
    376 
    377 ‘C-M-n’ (‘transient-history-next’)
    378 ‘C-x n’
    379      This command switches to the next value used for the active
    380      transient.
    381 
    382    In addition to the transient-wide history, Transient of course
    383 supports per-infix history.  When an infix reads user-input using the
    384 minibuffer, the user can use the regular minibuffer history commands to
    385 cycle through previously used values.  Usually the same keys as those
    386 mentioned above are bound to those commands.
    387 
    388    Authors of transients should arrange for different infix commands
    389 that read the same kind of value to also use the same history key (see
    390 *note Suffix Slots::).
    391 
    392    Both kinds of history are saved to a file when Emacs is exited.
    393 
    394  -- User Option: transient-history-file
    395      This option names the file that is used to persist the history of
    396      transients and their infixes between Emacs sessions.
    397 
    398  -- User Option: transient-history-limit
    399      This option controls how many history elements are kept at the time
    400      the history is saved in ‘transient-history-file’.
    401 
    402 
    403 File: transient.info,  Node: Getting Help for Suffix Commands,  Next: Enabling and Disabling Suffixes,  Prev: Using History,  Up: Usage
    404 
    405 2.6 Getting Help for Suffix Commands
    406 ====================================
    407 
    408 Transients can have many suffixes and infixes that the user might not be
    409 familiar with.  To make it trivial to get help for these, Transient
    410 provides access to the documentation directly from the active transient.
    411 
    412 ‘C-h’ (‘transient-help’)
    413      This command enters help mode.  When help mode is active, typing a
    414      key shows information about the suffix command that the key
    415      normally is bound to (instead of invoking it).  Pressing ‘C-h’ a
    416      second time shows information about the _prefix_ command.
    417 
    418      After typing a key, the stack of transient states is suspended and
    419      information about the suffix command is shown instead.  Typing ‘q’
    420      in the help buffer buries that buffer and resumes the transient
    421      state.
    422 
    423    What sort of documentation is shown depends on how the transient was
    424 defined.  For infix commands that represent command-line arguments this
    425 ideally shows the appropriate manpage.  ‘transient-help’ then tries to
    426 jump to the correct location within that.  Info manuals are also
    427 supported.  The fallback is to show the command’s documentation string,
    428 for non-infix suffixes this is usually appropriate.
    429 
    430 
    431 File: transient.info,  Node: Enabling and Disabling Suffixes,  Next: Other Commands,  Prev: Getting Help for Suffix Commands,  Up: Usage
    432 
    433 2.7 Enabling and Disabling Suffixes
    434 ===================================
    435 
    436 The user base of a package that uses transients can be very diverse.
    437 This is certainly the case for Magit; some users have been using it and
    438 Git for a decade, while others are just getting started now.
    439 
    440    For that reason a mechanism is needed that authors can use to
    441 classify a transient’s infixes and suffixes along the
    442 essentials...everything spectrum.  We use the term “levels” to describe
    443 that mechanism.
    444 
    445    Each suffix command is placed on a level and each transient has a
    446 level (called “transient-level”), which controls which suffix commands
    447 are available.  Integers between 1 and 7 (inclusive) are valid levels.
    448 For suffixes, 0 is also valid; it means that the suffix is not displayed
    449 at any level.
    450 
    451    The levels of individual transients and/or their individual suffixes
    452 can be changed interactively, by invoking the transient and then
    453 pressing ‘C-x l’ to enter the “edit” mode, see below.
    454 
    455    The default level for both transients and their suffixes is 4.  The
    456 ‘transient-default-level’ option only controls the default for
    457 transients.  The default suffix level is always 4.  The authors of
    458 transients should place certain suffixes on a higher level, if they
    459 expect that it won’t be of use to most users, and they should place very
    460 important suffixes on a lower level, so that they remain available even
    461 if the user lowers the transient level.
    462 
    463  -- User Option: transient-default-level
    464      This option controls which suffix levels are made available by
    465      default.  It sets the transient-level for transients for which the
    466      user has not set that individually.
    467 
    468  -- User Option: transient-levels-file
    469      This option names the file that is used to persist the levels of
    470      transients and their suffixes between Emacs sessions.
    471 
    472 ‘C-x l’ (‘transient-set-level’)
    473      This command enters edit mode.  When edit mode is active, then all
    474      infixes and suffixes that are currently usable are displayed along
    475      with their levels.  The colors of the levels indicate whether they
    476      are enabled or not.  The level of the transient is also displayed
    477      along with some usage information.
    478 
    479      In edit mode, pressing the key that would usually invoke a certain
    480      suffix instead prompts the user for the level that suffix should be
    481      placed on.
    482 
    483      Help mode is available in edit mode.
    484 
    485      To change the transient level press ‘C-x l’ again.
    486 
    487      To exit edit mode press ‘C-g’.
    488 
    489      Note that edit mode does not display any suffixes that are not
    490      currently usable.  ‘magit-rebase’, for example, shows different
    491      suffixes depending on whether a rebase is already in progress or
    492      not.  The predicates also apply in edit mode.
    493 
    494      Therefore, to control which suffixes are available given a certain
    495      state, you have to make sure that that state is currently active.
    496 
    497 ‘C-x a’ (‘transient-toggle-level-limit’)
    498      This command toggle whether suffixes that are on levels higher than
    499      the level specified by ‘transient-default-level’ are temporarily
    500      available anyway.
    501 
    502 
    503 File: transient.info,  Node: Other Commands,  Next: Configuration,  Prev: Enabling and Disabling Suffixes,  Up: Usage
    504 
    505 2.8 Other Commands
    506 ==================
    507 
    508 When invoking a transient in a small frame, the transient window may not
    509 show the complete buffer, making it necessary to scroll, using the
    510 following commands.  These commands are never shown in the transient
    511 window, and the key bindings are the same as for ‘scroll-up-command’ and
    512 ‘scroll-down-command’ in other buffers.
    513 
    514  -- Command: transient-scroll-up arg
    515      This command scrolls text of transient popup window upward ARG
    516      lines.  If ARG is ‘nil’, then it scrolls near full screen.  This is
    517      a wrapper around ‘scroll-up-command’ (which see).
    518 
    519  -- Command: transient-scroll-down arg
    520      This command scrolls text of transient popup window down ARG lines.
    521      If ARG is ‘nil’, then it scrolls near full screen.  This is a
    522      wrapper around ‘scroll-down-command’ (which see).
    523 
    524 
    525 File: transient.info,  Node: Configuration,  Prev: Other Commands,  Up: Usage
    526 
    527 2.9 Configuration
    528 =================
    529 
    530 More options are described in *note Common Suffix Commands::, in *note
    531 Saving Values::, in *note Using History:: and in *note Enabling and
    532 Disabling Suffixes::.
    533 
    534 Essential Options
    535 -----------------
    536 
    537 Also see *note Common Suffix Commands::.
    538 
    539  -- User Option: transient-show-popup
    540      This option controls whether the current transient’s infix and
    541      suffix commands are shown in the popup buffer.
    542 
    543         • If ‘t’ (the default) then the popup buffer is shown as soon as
    544           a transient prefix command is invoked.
    545 
    546         • If ‘nil’, then the popup buffer is not shown unless the user
    547           explicitly requests it, by pressing an incomplete prefix key
    548           sequence.
    549 
    550         • If a number, then the a brief one-line summary is shown
    551           instead of the popup buffer.  If zero or negative, then not
    552           even that summary is shown; only the pressed key itself is
    553           shown.
    554 
    555           The popup is shown when the user explicitly requests it by
    556           pressing an incomplete prefix key sequence.  Unless this is
    557           zero, the popup is shown after that many seconds of inactivity
    558           (using the absolute value).
    559 
    560  -- User Option: transient-enable-popup-navigation
    561      This option controls whether navigation commands are enabled in the
    562      transient popup buffer.
    563 
    564      While a transient is active the transient popup buffer is not the
    565      current buffer, making it necessary to use dedicated commands to
    566      act on that buffer itself.  This is disabled by default.  If this
    567      option is non-‘nil’, then the following features are available:
    568 
    569         • ‘<UP>’ moves the cursor to the previous suffix.
    570         • ‘<DOWN>’ moves the cursor to the next suffix.
    571         • ‘<RET>’ invokes the suffix the cursor is on.
    572         • ‘mouse-1’ invokes the clicked on suffix.
    573         • ‘C-s’ and ‘C-r’ start isearch in the popup buffer.
    574 
    575  -- User Option: transient-display-buffer-action
    576      This option specifies the action used to display the transient
    577      popup buffer.  The transient popup buffer is displayed in a window
    578      using ‘(display-buffer BUFFER transient-display-buffer-action)’.
    579 
    580      The value of this option has the form ‘(FUNCTION . ALIST)’, where
    581      FUNCTION is a function or a list of functions.  Each such function
    582      should accept two arguments: a buffer to display and an alist of
    583      the same form as ALIST.  See *note (elisp)Choosing Window::, for
    584      details.
    585 
    586      The default is:
    587 
    588           (display-buffer-in-side-window
    589             (side . bottom)
    590             (inhibit-same-window . t)
    591             (window-parameters (no-other-window . t)))
    592 
    593      This displays the window at the bottom of the selected frame.
    594      Another useful FUNCTION is ‘display-buffer-below-selected’, which
    595      is what ‘magit-popup’ used by default.  For more alternatives see
    596      *note (elisp)Buffer Display Action Functions::, and *note
    597      (elisp)Buffer Display Action Alists::.
    598 
    599      Note that the buffer that was current before the transient buffer
    600      is shown should remain the current buffer.  Many suffix commands
    601      act on the thing at point, if appropriate, and if the transient
    602      buffer became the current buffer, then that would change what is at
    603      point.  To that effect ‘inhibit-same-window’ ensures that the
    604      selected window is not used to show the transient buffer.
    605 
    606      It may be possible to display the window in another frame, but
    607      whether that works in practice depends on the window-manager.  If
    608      the window manager selects the new window (Emacs frame), then that
    609      unfortunately changes which buffer is current.
    610 
    611      If you change the value of this option, then you might also want to
    612      change the value of ‘transient-mode-line-format’.
    613 
    614 Accessibility Options
    615 ---------------------
    616 
    617  -- User Option: transient-force-single-column
    618      This option controls whether the use of a single column to display
    619      suffixes is enforced.  This might be useful for users with low
    620      vision who use large text and might otherwise have to scroll in two
    621      dimensions.
    622 
    623 Auxiliary Options
    624 -----------------
    625 
    626  -- User Option: transient-mode-line-format
    627      This option controls whether the transient popup buffer has a
    628      mode-line, separator line, or neither.
    629 
    630      If ‘nil’, then the buffer has no mode-line.  If the buffer is not
    631      displayed right above the echo area, then this probably is not a
    632      good value.
    633 
    634      If ‘line’ (the default) or a natural number, then the buffer has no
    635      mode-line, but a line is drawn is drawn in its place.  If a number
    636      is used, that specifies the thickness of the line.  On termcap
    637      frames we cannot draw lines, so there ‘line’ and numbers are
    638      synonyms for ‘nil’.
    639 
    640      The color of the line is used to indicate if non-suffixes are
    641      allowed and whether they exit the transient.  The foreground color
    642      of ‘transient-key-noop’ (if non-suffix are disallowed),
    643      ‘transient-key-stay’ (if allowed and transient stays active), or
    644      ‘transient-key-exit’ (if allowed and they exit the transient) is
    645      used to draw the line.
    646 
    647      Otherwise this can be any mode-line format.  See *note (elisp)Mode
    648      Line Format::, for details.
    649 
    650  -- User Option: transient-semantic-coloring
    651      This option controls whether colors are used to indicate the
    652      transient behavior of commands.
    653 
    654      If non-‘nil’, then the key binding of each suffix is colorized to
    655      indicate whether it exits the transient state or not.  The color of
    656      the prefix is indicated using the line that is drawn when the value
    657      of ‘transient-mode-line-format’ is ‘line’.
    658 
    659  -- User Option: transient-highlight-mismatched-keys
    660      This option controls whether key bindings of infix commands that do
    661      not match the respective command-line argument should be
    662      highlighted.  For other infix commands this option has no effect.
    663 
    664      When this option is non-‘nil’, the key binding for an infix
    665      argument is highlighted when only a long argument (e.g.,
    666      ‘--verbose’) is specified but no shorthand (e.g., ‘-v’).  In the
    667      rare case that a shorthand is specified but the key binding does
    668      not match, then it is highlighted differently.
    669 
    670      Highlighting mismatched key bindings is useful when learning the
    671      arguments of the underlying command-line tool; you wouldn’t want to
    672      learn any short-hands that do not actually exist.
    673 
    674      The highlighting is done using one of the faces
    675      ‘transient-mismatched-key’ and ‘transient-nonstandard-key’.
    676 
    677  -- User Option: transient-substitute-key-function
    678      This function is used to modify key bindings.  If the value of this
    679      option is ‘nil’ (the default), then no substitution is performed.
    680 
    681      This function is called with one argument, the prefix object, and
    682      must return a key binding description, either the existing key
    683      description it finds in the ‘key’ slot, or the key description that
    684      replaces the prefix key.  It could be used to make other
    685      substitutions, but that is discouraged.
    686 
    687      For example, ‘=’ is hard to reach using my custom keyboard layout,
    688      so I substitute ‘(’ for that, which is easy to reach using a layout
    689      optimized for lisp.
    690 
    691           (setq transient-substitute-key-function
    692                 (lambda (obj)
    693                   (let ((key (oref obj key)))
    694                     (if (string-match "\\`\\(=\\)[a-zA-Z]" key)
    695                         (replace-match "(" t t key 1)
    696                       key))))
    697 
    698  -- User Option: transient-read-with-initial-input
    699      This option controls whether the last history element is used as
    700      the initial minibuffer input when reading the value of an infix
    701      argument from the user.  If ‘nil’, there is no initial input and
    702      the first element has to be accessed the same way as the older
    703      elements.
    704 
    705  -- User Option: transient-hide-during-minibuffer-read
    706      This option controls whether the transient buffer is hidden while
    707      user input is being read in the minibuffer.
    708 
    709  -- User Option: transient-align-variable-pitch
    710      This option controls whether columns are aligned pixel-wise in the
    711      popup buffer.
    712 
    713      If this is non-‘nil’, then columns are aligned pixel-wise to
    714      support variable-pitch fonts.  Keys are not aligned, so you should
    715      use a fixed-pitch font for the ‘transient-key’ face.  Other key
    716      faces inherit from that face unless a theme is used that breaks
    717      that relationship.
    718 
    719      This option is intended for users who use a variable-pitch font for
    720      the ‘default’ face.
    721 
    722  -- User Option: transient-force-fixed-pitch
    723      This option controls whether to force the use of a monospaced font
    724      in popup buffer.  Even if you use a proportional font for the
    725      ‘default’ face, you might still want to use a monospaced font in
    726      transient’s popup buffer.  Setting this option to ‘t’ causes
    727      ‘default’ to be remapped to ‘fixed-pitch’ in that buffer.
    728 
    729 Developer Options
    730 -----------------
    731 
    732 These options are mainly intended for developers.
    733 
    734  -- User Option: transient-detect-key-conflicts
    735      This option controls whether key binding conflicts should be
    736      detected at the time the transient is invoked.  If so, this results
    737      in an error, which prevents the transient from being used.  Because
    738      of that, conflicts are ignored by default.
    739 
    740      Conflicts cannot be determined earlier, i.e., when the transient is
    741      being defined and when new suffixes are being added, because at
    742      that time there can be false-positives.  It is actually valid for
    743      multiple suffixes to share a common key binding, provided the
    744      predicates of those suffixes prevent that more than one of them is
    745      enabled at a time.
    746 
    747  -- User Option: transient-highlight-higher-levels
    748      This option controls whether suffixes that would not be available
    749      by default are highlighted.
    750 
    751      When non-‘nil’ then the descriptions of suffixes are highlighted if
    752      their level is above 4, the default of ‘transient-default-level’.
    753      Assuming you have set that variable to 7, this highlights all
    754      suffixes that won’t be available to users without them making the
    755      same customization.
    756 
    757 
    758 File: transient.info,  Node: Modifying Existing Transients,  Next: Defining New Commands,  Prev: Usage,  Up: Top
    759 
    760 3 Modifying Existing Transients
    761 *******************************
    762 
    763 To an extent, transients can be customized interactively, see *note
    764 Enabling and Disabling Suffixes::.  This section explains how existing
    765 transients can be further modified non-interactively.  Let’s begin with
    766 an example:
    767 
    768      (transient-append-suffix 'magit-patch-apply "-3"
    769        '("-R" "Apply in reverse" "--reverse"))
    770 
    771    This inserts a new infix argument to toggle the ‘--reverse’ argument
    772 after the infix argument that toggles ‘-3’ in ‘magit-patch-apply’.
    773 
    774    The following functions share a few arguments:
    775 
    776    • PREFIX is a transient prefix command, a symbol.
    777 
    778    • SUFFIX is a transient infix or suffix specification in the same
    779      form as expected by ‘transient-define-prefix’.  Note that an infix
    780      is a special kind of suffix.  Depending on context “suffixes” means
    781      “suffixes (including infixes)” or “non-infix suffixes”.  Here it
    782      means the former.  See *note Suffix Specifications::.
    783 
    784      SUFFIX may also be a group in the same form as expected by
    785      ‘transient-define-prefix’.  See *note Group Specifications::.
    786 
    787    • LOC is a command, a key vector, a key description (a string as
    788      returned by ‘key-description’), or a list specifying coordinates
    789      (the last element may also be a command or key).  For example ‘(1 0
    790      -1)’ identifies the last suffix (‘-1’) of the first subgroup (‘0’)
    791      of the second group (‘1’).
    792 
    793      If LOC is a list of coordinates, then it can be used to identify a
    794      group, not just an individual suffix command.
    795 
    796      The function ‘transient-get-suffix’ can be useful to determine
    797      whether a certain coordination list identifies the suffix or group
    798      that you expect it to identify.  In hairy cases it may be necessary
    799      to look at the definition of the transient prefix command.
    800 
    801    These functions operate on the information stored in the
    802 ‘transient--layout’ property of the PREFIX symbol.  Suffix entries in
    803 that tree are not objects but have the form ‘(LEVEL CLASS PLIST)’, where
    804 PLIST should set at least ‘:key’, ‘:description’ and ‘:command’.
    805 
    806  -- Function: transient-insert-suffix prefix loc suffix &optional
    807           keep-other
    808  -- Function: transient-append-suffix prefix loc suffix &optional
    809           keep-other
    810      These functions insert the suffix or group SUFFIX into PREFIX
    811      before or after LOC.
    812 
    813      Conceptually adding a binding to a transient prefix is similar to
    814      adding a binding to a keymap, but this is complicated by the fact
    815      that multiple suffix commands can be bound to the same key,
    816      provided they are never active at the same time, see *note
    817      Predicate Slots::.
    818 
    819      Unfortunately both false-positives and false-negatives are
    820      possible.  To deal with the former use non-‘nil’ KEEP-OTHER.  To
    821      deal with the latter remove the conflicting binding explicitly.
    822 
    823  -- Function: transient-replace-suffix prefix loc suffix
    824      This function replaces the suffix or group at LOC in PREFIX with
    825      suffix or group SUFFIX.
    826 
    827  -- Function: transient-remove-suffix prefix loc
    828      This function removes the suffix or group at LOC in PREFIX.
    829 
    830  -- Function: transient-get-suffix prefix loc
    831      This function returns the suffix or group at LOC in PREFIX.  The
    832      returned value has the form mentioned above.
    833 
    834  -- Function: transient-suffix-put prefix loc prop value
    835      This function edits the suffix or group at LOC in PREFIX, by
    836      setting the PROP of its plist to VALUE.
    837 
    838    Most of these functions do not signal an error if they cannot perform
    839 the requested modification.  The functions that insert new suffixes show
    840 a warning if LOC cannot be found in PREFIX without signaling an error.
    841 The reason for doing it like this is that establishing a key binding
    842 (and that is what we essentially are trying to do here) should not
    843 prevent the rest of the configuration from loading.  Among these
    844 functions only ‘transient-get-suffix’ and ‘transient-suffix-put’ may
    845 signal an error.
    846 
    847 
    848 File: transient.info,  Node: Defining New Commands,  Next: Classes and Methods,  Prev: Modifying Existing Transients,  Up: Top
    849 
    850 4 Defining New Commands
    851 ***********************
    852 
    853 * Menu:
    854 
    855 * Technical Introduction::
    856 * Defining Transients::
    857 * Binding Suffix and Infix Commands::
    858 * Defining Suffix and Infix Commands::
    859 * Using Infix Arguments::
    860 * Transient State::
    861 
    862 
    863 File: transient.info,  Node: Technical Introduction,  Next: Defining Transients,  Up: Defining New Commands
    864 
    865 4.1 Technical Introduction
    866 ==========================
    867 
    868 Taking inspiration from prefix keys and prefix arguments, Transient
    869 implements a similar abstraction involving a prefix command, infix
    870 arguments and suffix commands.
    871 
    872    When the user calls a transient prefix command, a transient
    873 (temporary) keymap is activated, which binds the transient’s infix and
    874 suffix commands, and functions that control the transient state are
    875 added to ‘pre-command-hook’ and ‘post-command-hook’.  The available
    876 suffix and infix commands and their state are shown in a popup buffer
    877 until the transient state is exited by invoking a suffix command.
    878 
    879    Calling an infix command causes its value to be changed.  How that is
    880 done depends on the type of the infix command.  The simplest case is an
    881 infix command that represents a command-line argument that does not take
    882 a value.  Invoking such an infix command causes the switch to be toggled
    883 on or off.  More complex infix commands may read a value from the user,
    884 using the minibuffer.
    885 
    886    Calling a suffix command usually causes the transient to be exited;
    887 the transient keymaps and hook functions are removed, the popup buffer
    888 no longer shows information about the (no longer bound) suffix commands,
    889 the values of some public global variables are set, while some internal
    890 global variables are unset, and finally the command is actually called.
    891 Suffix commands can also be configured to not exit the transient.
    892 
    893    A suffix command can, but does not have to, use the infix arguments
    894 in much the same way any command can choose to use or ignore the prefix
    895 arguments.  For a suffix command that was invoked from a transient, the
    896 variable ‘transient-current-suffixes’ and the function ‘transient-args’
    897 serve about the same purpose as the variables ‘prefix-arg’ and
    898 ‘current-prefix-arg’ do for any command that was called after the prefix
    899 arguments have been set using a command such as ‘universal-argument’.
    900 
    901    Transient can be used to implement simple “command dispatchers”.  The
    902 main benefit then is that the user can see all the available commands in
    903 a popup buffer, which can be thought of as a “menus”.  That is useful by
    904 itself because it frees the user from having to remember all the keys
    905 that are valid after a certain prefix key or command.  Magit’s
    906 ‘magit-dispatch’ (on ‘C-x M-g’) command is an example of using Transient
    907 to merely implement a command dispatcher.
    908 
    909    In addition to that, Transient also allows users to interactively
    910 pass arguments to commands.  These arguments can be much more complex
    911 than what is reasonable when using prefix arguments.  There is a limit
    912 to how many aspects of a command can be controlled using prefix
    913 arguments.  Furthermore, what a certain prefix argument means for
    914 different commands can be completely different, and users have to read
    915 documentation to learn and then commit to memory what a certain prefix
    916 argument means to a certain command.
    917 
    918    Transient suffix commands, on the other hand, can accept dozens of
    919 different arguments without the user having to remember anything.  When
    920 using Transient, one can call a command with arguments that are just as
    921 complex as when calling the same function non-interactively from Lisp.
    922 
    923    Invoking a transient suffix command with arguments is similar to
    924 invoking a command in a shell with command-line completion and history
    925 enabled.  One benefit of the Transient interface is that it remembers
    926 history not only on a global level (“this command was invoked using
    927 these arguments, and previously it was invoked using those other
    928 arguments”), but also remembers the values of individual arguments
    929 independently.  See *note Using History::.
    930 
    931    After a transient prefix command is invoked, ‘C-h KEY’ can be used to
    932 show the documentation for the infix or suffix command that ‘KEY’ is
    933 bound to (see *note Getting Help for Suffix Commands::), and infixes and
    934 suffixes can be removed from the transient using ‘C-x l KEY’.  Infixes
    935 and suffixes that are disabled by default can be enabled the same way.
    936 See *note Enabling and Disabling Suffixes::.
    937 
    938    Transient ships with support for a few different types of specialized
    939 infix commands.  A command that sets a command line option, for example,
    940 has different needs than a command that merely toggles a boolean flag.
    941 Additionally, Transient provides abstractions for defining new types,
    942 which the author of Transient did not anticipate (or didn’t get around
    943 to implementing yet).
    944 
    945    Note that suffix commands also support regular prefix arguments.  A
    946 suffix command may even be called with both infix and prefix arguments
    947 at the same time.  If you invoke a command as a suffix of a transient
    948 prefix command, but also want to pass prefix arguments to it, then first
    949 invoke the prefix command, and only after doing that invoke the prefix
    950 arguments, before finally invoking the suffix command.  If you instead
    951 began by providing the prefix arguments, then those would apply to the
    952 prefix command, not the suffix command.  Likewise, if you want to change
    953 infix arguments before invoking a suffix command with prefix arguments,
    954 then change the infix arguments before invoking the prefix arguments.
    955 In other words, regular prefix arguments always apply to the next
    956 command, and since transient prefix, infix and suffix commands are just
    957 regular commands, the same applies to them.  (Regular prefix keys behave
    958 differently because they are not commands at all, instead they are just
    959 incomplete key sequences, and those cannot be interrupted with prefix
    960 commands.)
    961 
    962 
    963 File: transient.info,  Node: Defining Transients,  Next: Binding Suffix and Infix Commands,  Prev: Technical Introduction,  Up: Defining New Commands
    964 
    965 4.2 Defining Transients
    966 =======================
    967 
    968 A transient consists of a prefix command and at least one suffix
    969 command, though usually a transient has several infix and suffix
    970 commands.  The below macro defines the transient prefix command *and*
    971 binds the transient’s infix and suffix commands.  In other words, it
    972 defines the complete transient, not just the transient prefix command
    973 that is used to invoke that transient.
    974 
    975  -- Macro: transient-define-prefix name arglist [docstring] [keyword
    976           value]... group... [body...]
    977      This macro defines NAME as a transient prefix command and binds the
    978      transient’s infix and suffix commands.
    979 
    980      ARGLIST are the arguments that the prefix command takes.  DOCSTRING
    981      is the documentation string and is optional.
    982 
    983      These arguments can optionally be followed by keyword-value pairs.
    984      Each key has to be a keyword symbol, either ‘:class’ or a keyword
    985      argument supported by the constructor of that class.  The
    986      ‘transient-prefix’ class is used if the class is not specified
    987      explicitly.
    988 
    989      GROUPs add key bindings for infix and suffix commands and specify
    990      how these bindings are presented in the popup buffer.  At least one
    991      GROUP has to be specified.  See *note Binding Suffix and Infix
    992      Commands::.
    993 
    994      The BODY is optional.  If it is omitted, then ARGLIST is ignored
    995      and the function definition becomes:
    996 
    997           (lambda ()
    998             (interactive)
    999             (transient-setup 'NAME))
   1000 
   1001      If BODY is specified, then it must begin with an ‘interactive’ form
   1002      that matches ARGLIST, and it must call ‘transient-setup’.  It may,
   1003      however, call that function only when some condition is satisfied.
   1004 
   1005      All transients have a (possibly ‘nil’) value, which is exported
   1006      when suffix commands are called, so that they can consume that
   1007      value.  For some transients it might be necessary to have a sort of
   1008      secondary value, called a “scope”.  Such a scope would usually be
   1009      set in the command’s ‘interactive’ form and has to be passed to the
   1010      setup function:
   1011 
   1012           (transient-setup 'NAME nil nil :scope SCOPE)
   1013 
   1014      For example, the scope of the ‘magit-branch-configure’ transient is
   1015      the branch whose variables are being configured.
   1016 
   1017 
   1018 File: transient.info,  Node: Binding Suffix and Infix Commands,  Next: Defining Suffix and Infix Commands,  Prev: Defining Transients,  Up: Defining New Commands
   1019 
   1020 4.3 Binding Suffix and Infix Commands
   1021 =====================================
   1022 
   1023 The macro ‘transient-define-prefix’ is used to define a transient.  This
   1024 defines the actual transient prefix command (see *note Defining
   1025 Transients::) and adds the transient’s infix and suffix bindings, as
   1026 described below.
   1027 
   1028    Users and third-party packages can add additional bindings using
   1029 functions such as ‘transient-insert-suffix’ (see *note Modifying
   1030 Existing Transients::).  These functions take a “suffix specification”
   1031 as one of their arguments, which has the same form as the specifications
   1032 used in ‘transient-define-prefix’.
   1033 
   1034 * Menu:
   1035 
   1036 * Group Specifications::
   1037 * Suffix Specifications::
   1038 
   1039 
   1040 File: transient.info,  Node: Group Specifications,  Next: Suffix Specifications,  Up: Binding Suffix and Infix Commands
   1041 
   1042 4.3.1 Group Specifications
   1043 --------------------------
   1044 
   1045 The suffix and infix commands of a transient are organized in groups.
   1046 The grouping controls how the descriptions of the suffixes are outlined
   1047 visually but also makes it possible to set certain properties for a set
   1048 of suffixes.
   1049 
   1050    Several group classes exist, some of which organize suffixes in
   1051 subgroups.  In most cases the class does not have to be specified
   1052 explicitly, but see *note Group Classes::.
   1053 
   1054    Groups are specified in the call to ‘transient-define-prefix’, using
   1055 vectors.  Because groups are represented using vectors, we cannot use
   1056 square brackets to indicate an optional element and instead use curly
   1057 brackets to do the latter.
   1058 
   1059    Group specifications then have this form:
   1060 
   1061      [{LEVEL} {DESCRIPTION} {KEYWORD VALUE}... ELEMENT...]
   1062 
   1063    The LEVEL is optional and defaults to 4.  See *note Enabling and
   1064 Disabling Suffixes::.
   1065 
   1066    The DESCRIPTION is optional.  If present, it is used as the heading
   1067 of the group.
   1068 
   1069    The KEYWORD-VALUE pairs are optional.  Each keyword has to be a
   1070 keyword symbol, either ‘:class’ or a keyword argument supported by the
   1071 constructor of that class.
   1072 
   1073    • One of these keywords, ‘:description’, is equivalent to specifying
   1074      DESCRIPTION at the very beginning of the vector.  The
   1075      recommendation is to use ‘:description’ if some other keyword is
   1076      also used, for consistency, or DESCRIPTION otherwise, because it
   1077      looks better.
   1078 
   1079    • Likewise ‘:level’ is equivalent to LEVEL.
   1080 
   1081    • Other important keywords include the ‘:if...’ keywords.  These
   1082      keywords control whether the group is available in a certain
   1083      situation.
   1084 
   1085      For example, one group of the ‘magit-rebase’ transient uses ‘:if
   1086      magit-rebase-in-progress-p’, which contains the suffixes that are
   1087      useful while rebase is already in progress; and another that uses
   1088      ‘:if-not magit-rebase-in-progress-p’, which contains the suffixes
   1089      that initiate a rebase.
   1090 
   1091      These predicates can also be used on individual suffixes and are
   1092      only documented once, see *note Predicate Slots::.
   1093 
   1094    • The value of ‘:hide’, if non-‘nil’, is a predicate that controls
   1095      whether the group is hidden by default.  The key bindings for
   1096      suffixes of a hidden group should all use the same prefix key.
   1097      Pressing that prefix key should temporarily show the group and its
   1098      suffixes, which assumes that a predicate like this is used:
   1099 
   1100           (lambda ()
   1101             (eq (car transient--redisplay-key)
   1102                 ?\C-c)) ; the prefix key shared by all bindings
   1103 
   1104    • The value of ‘:setup-children’, if non-‘nil’, is a function that
   1105      takes one argument, a potentially list of children, and must return
   1106      a list of children or an empty list.  This can either be used to
   1107      somehow transform the group’s children that were defined the normal
   1108      way, or to dynamically create the children from scratch.
   1109 
   1110      The returned children must have the same form as stored in the
   1111      prefix’s ‘transient--layout’ property, but it is often more
   1112      convenient to use the same form as understood by
   1113      ‘transient-define-prefix’, described below.  If you use the latter
   1114      approach, you can use the ‘transient-parse-suffixes’ and
   1115      ‘transient-parse-suffix’ functions to transform them from the
   1116      convenient to the expected form.  Depending on the used group
   1117      class, ‘transient-parse-suffixes’’s SUFFIXES must be a list of
   1118      group vectors (for ‘transient-columns’) or a list of suffix lists
   1119      (for all other group classes).
   1120 
   1121      If you explicitly specify children and then transform them using
   1122      ‘:setup-children’, then the class of the group is determined as
   1123      usual, based on explicitly specified children.
   1124 
   1125      If you do not explicitly specify children and thus rely solely on
   1126      ‘:setup-children’, then you must specify the class using ‘:class’.
   1127      For backward compatibility, if you fail to do so,
   1128      ‘transient-column’ is used and a warning is displayed.  This
   1129      warning will eventually be replaced with an error.
   1130 
   1131           (transient-define-prefix my-finder-by-keyword ()
   1132             "Select a keyword and list matching packages."
   1133             ;; The real `finder-by-keyword' is more convenient
   1134             ;; of course, but that is not the point here.
   1135             [:class transient-columns
   1136              :setup-children
   1137              (lambda (_)
   1138                (transient-parse-suffixes
   1139                 'my-finder-by-keyword
   1140                 (let ((char (1- ?A)))
   1141                   (mapcar                  ; a list ...
   1142                    (lambda (partition)
   1143                      (vconcat              ; of group vectors ...
   1144                       (mapcar (lambda (elt)
   1145                                 (let ((keyword (symbol-name (car elt))))
   1146                                            ; ... where each suffix is a list
   1147                                   (list (format "%c" (cl-incf char))
   1148                                         keyword
   1149                                         (lambda ()
   1150                                           (interactive)
   1151                                           (finder-list-matches keyword)))))
   1152                               partition)))
   1153                    (seq-partition finder-known-keywords 7)))))])
   1154 
   1155    • The boolean ‘:pad-keys’ argument controls whether keys of all
   1156      suffixes contained in a group are right padded, effectively
   1157      aligning the descriptions.
   1158 
   1159    The ELEMENTs are either all subgroups, or all suffixes and strings.
   1160 (At least currently no group type exists that would allow mixing
   1161 subgroups with commands at the same level, though in principle there is
   1162 nothing that prevents that.)
   1163 
   1164    If the ELEMENTs are not subgroups, then they can be a mixture of
   1165 lists, which specify commands, and strings.  Strings are inserted
   1166 verbatim into the buffer.  The empty string can be used to insert gaps
   1167 between suffixes, which is particularly useful if the suffixes are
   1168 outlined as a table.
   1169 
   1170    Inside group specifications, including inside contained suffix
   1171 specifications, nothing has to be quoted and quoting anyway is invalid.
   1172 The value following a keyword, can be explicitly unquoted using ‘,’.
   1173 This feature is experimental and should be avoided.
   1174 
   1175    The form of suffix specifications is documented in the next node.
   1176 
   1177 
   1178 File: transient.info,  Node: Suffix Specifications,  Prev: Group Specifications,  Up: Binding Suffix and Infix Commands
   1179 
   1180 4.3.2 Suffix Specifications
   1181 ---------------------------
   1182 
   1183 A transient’s suffix and infix commands are bound when the transient
   1184 prefix command is defined using ‘transient-define-prefix’, see *note
   1185 Defining Transients::.  The commands are organized into groups, see
   1186 *note Group Specifications::.  Here we describe the form used to bind an
   1187 individual suffix command.
   1188 
   1189    The same form is also used when later binding additional commands
   1190 using functions such as ‘transient-insert-suffix’, see *note Modifying
   1191 Existing Transients::.
   1192 
   1193    Note that an infix is a special kind of suffix.  Depending on context
   1194 “suffixes” means “suffixes (including infixes)” or “non-infix suffixes”.
   1195 Here it means the former.
   1196 
   1197    Suffix specifications have this form:
   1198 
   1199      ([LEVEL] [KEY [DESCRIPTION]] COMMAND|ARGUMENT [KEYWORD VALUE]...)
   1200 
   1201    LEVEL, KEY and DESCRIPTION can also be specified using the KEYWORDs
   1202 ‘:level’, ‘:key’ and ‘:description’.  If the object that is associated
   1203 with COMMAND sets these properties, then they do not have to be
   1204 specified here.  You can however specify them here anyway, possibly
   1205 overriding the object’s values just for the binding inside this
   1206 transient.
   1207 
   1208    • LEVEL is the suffix level, an integer between 1 and 7.  See *note
   1209      Enabling and Disabling Suffixes::.
   1210 
   1211    • KEY is the key binding, either a vector or key description string.
   1212 
   1213    • DESCRIPTION is the description, either a string or a function that
   1214      takes zero or one arguments (the suffix object) and returns a
   1215      string.  The function should be a lambda expression to avoid
   1216      ambiguity.  In some cases a symbol that is bound as a function
   1217      would also work but to be safe you should use ‘:description’ in
   1218      that case.
   1219 
   1220    The next element is either a command or an argument.  This is the
   1221 only argument that is mandatory in all cases.
   1222 
   1223    • COMMAND should be a symbol that is bound as a function, which has
   1224      to be defined or at least autoloaded as a command by the time the
   1225      containing prefix command is invoked.
   1226 
   1227      Any command will do; it does not need to have an object associated
   1228      with it (as would be the case if ‘transient-define-suffix’ or
   1229      ‘transient-define-infix’ were used to define it).
   1230 
   1231      COMMAND can also be a ‘lambda’ expression.
   1232 
   1233      As mentioned above, the object that is associated with a command
   1234      can be used to set the default for certain values that otherwise
   1235      have to be set in the suffix specification.  Therefore if there is
   1236      no object, then you have to make sure to specify the KEY and the
   1237      DESCRIPTION.
   1238 
   1239      As a special case, if you want to add a command that might be
   1240      neither defined nor autoloaded, you can use a workaround like:
   1241 
   1242           (transient-insert-suffix 'some-prefix "k"
   1243             '("!" "Ceci n'est pas une commande" no-command
   1244               :if (lambda () (featurep 'no-library))))
   1245 
   1246      Instead of ‘featurep’ you could also use ‘require’ with a non-‘nil’
   1247      value for NOERROR.
   1248 
   1249    • The mandatory argument can also be a command-line argument, a
   1250      string.  In that case an anonymous command is defined and bound.
   1251 
   1252      Instead of a string, this can also be a list of two strings, in
   1253      which case the first string is used as the short argument (which
   1254      can also be specified using ‘:shortarg’) and the second as the long
   1255      argument (which can also be specified using ‘:argument’).
   1256 
   1257      Only the long argument is displayed in the popup buffer.  See
   1258      ‘transient-detect-key-conflicts’ for how the short argument may be
   1259      used.
   1260 
   1261      Unless the class is specified explicitly, the appropriate class is
   1262      guessed based on the long argument.  If the argument ends with ‘=’
   1263      (e.g., ‘--format=’) then ‘transient-option’ is used, otherwise
   1264      ‘transient-switch’.
   1265 
   1266    Finally, details can be specified using optional KEYWORD-VALUE pairs.
   1267 Each keyword has to be a keyword symbol, either ‘:class’ or a keyword
   1268 argument supported by the constructor of that class.  See *note Suffix
   1269 Slots::.
   1270 
   1271 
   1272 File: transient.info,  Node: Defining Suffix and Infix Commands,  Next: Using Infix Arguments,  Prev: Binding Suffix and Infix Commands,  Up: Defining New Commands
   1273 
   1274 4.4 Defining Suffix and Infix Commands
   1275 ======================================
   1276 
   1277 Note that an infix is a special kind of suffix.  Depending on context
   1278 “suffixes” means “suffixes (including infixes)” or “non-infix suffixes”.
   1279 
   1280  -- Macro: transient-define-suffix name arglist [docstring] [keyword
   1281           value]... body...
   1282      This macro defines NAME as a transient suffix command.
   1283 
   1284      ARGLIST are the arguments that the command takes.  DOCSTRING is the
   1285      documentation string and is optional.
   1286 
   1287      These arguments can optionally be followed by keyword-value pairs.
   1288      Each keyword has to be a keyword symbol, either ‘:class’ or a
   1289      keyword argument supported by the constructor of that class.  The
   1290      ‘transient-suffix’ class is used if the class is not specified
   1291      explicitly.
   1292 
   1293      The BODY must begin with an ‘interactive’ form that matches
   1294      ARGLIST.  The infix arguments are usually accessed by using
   1295      ‘transient-args’ inside ‘interactive’.
   1296 
   1297  -- Macro: transient-define-infix name arglist [docstring] [keyword
   1298           value]...
   1299      This macro defines NAME as a transient infix command.
   1300 
   1301      ARGLIST is always ignored (but mandatory never-the-less) and
   1302      reserved for future use.  DOCSTRING is the documentation string and
   1303      is optional.
   1304 
   1305      At least one key-value pair is required.  All transient infix
   1306      commands are ‘equal’ to each other (but not ‘eq’).  It is
   1307      meaningless to define an infix command, without providing at least
   1308      one keyword argument (usually ‘:argument’ or ‘:variable’, depending
   1309      on the class).  The suffix class defaults to ‘transient-switch’ and
   1310      can be set using the ‘:class’ keyword.
   1311 
   1312      The function definition is always:
   1313 
   1314           (lambda ()
   1315             (interactive)
   1316             (let ((obj (transient-suffix-object)))
   1317               (transient-infix-set obj (transient-infix-read obj)))
   1318             (transient--show))
   1319 
   1320      ‘transient-infix-read’ and ‘transient-infix-set’ are generic
   1321      functions.  Different infix commands behave differently because the
   1322      concrete methods are different for different infix command classes.
   1323      In rare cases the above command function might not be suitable,
   1324      even if you define your own infix command class.  In that case you
   1325      have to use ‘transient-define-suffix’ to define the infix command
   1326      and use ‘t’ as the value of the ‘:transient’ keyword.
   1327 
   1328  -- Macro: transient-define-argument name arglist [docstring] [keyword
   1329           value]...
   1330      This macro defines NAME as a transient infix command.
   1331 
   1332      This is an alias for ‘transient-define-infix’.  Only use this alias
   1333      to define an infix command that actually sets an infix argument.
   1334      To define an infix command that, for example, sets a variable, use
   1335      ‘transient-define-infix’ instead.
   1336 
   1337 
   1338 File: transient.info,  Node: Using Infix Arguments,  Next: Transient State,  Prev: Defining Suffix and Infix Commands,  Up: Defining New Commands
   1339 
   1340 4.5 Using Infix Arguments
   1341 =========================
   1342 
   1343 The functions and the variables described below allow suffix commands to
   1344 access the value of the transient from which they were invoked; which is
   1345 the value of its infix arguments.  These variables are set when the user
   1346 invokes a suffix command that exits the transient, but before actually
   1347 calling the command.
   1348 
   1349    When returning to the command-loop after calling the suffix command,
   1350 the arguments are reset to ‘nil’ (which causes the function to return
   1351 ‘nil’ too).
   1352 
   1353    Like for Emacs’s prefix arguments, it is advisable, but not
   1354 mandatory, to access the infix arguments inside the command’s
   1355 ‘interactive’ form.  The preferred way of doing that is to call the
   1356 ‘transient-args’ function, which for infix arguments serves about the
   1357 same purpose as ‘prefix-arg’ serves for prefix arguments.
   1358 
   1359  -- Function: transient-args prefix
   1360      This function returns the value of the transient prefix command
   1361      PREFIX.
   1362 
   1363      If the current command was invoked from the transient prefix
   1364      command PREFIX, then it returns the active infix arguments.  If the
   1365      current command was not invoked from PREFIX, then it returns the
   1366      set, saved or default value for PREFIX.
   1367 
   1368  -- Function: transient-arg-value arg args
   1369      This function return the value of ARG as it appears in ARGS.
   1370 
   1371      For a switch a boolean is returned.  For an option the value is
   1372      returned as a string, using the empty string for the empty value,
   1373      or ‘nil’ if the option does not appear in ARGS.
   1374 
   1375  -- Function: transient-suffixes prefix
   1376      This function returns the suffixes of the transient prefix command
   1377      PREFIX.  This is a list of objects.  This function should only be
   1378      used if you need the objects (as opposed to just their values) and
   1379      if the current command is not being invoked from PREFIX.
   1380 
   1381  -- Variable: transient-current-suffixes
   1382      The suffixes of the transient from which this suffix command was
   1383      invoked.  This is a list of objects.  Usually it is sufficient to
   1384      instead use the function ‘transient-args’, which returns a list of
   1385      values.  In complex cases it might be necessary to use this
   1386      variable instead, i.e., if you need access to information beside
   1387      the value.
   1388 
   1389  -- Variable: transient-current-command
   1390      The transient from which this suffix command was invoked.  The
   1391      returned value is a symbol, the transient prefix command.
   1392 
   1393  -- Variable: transient-current-prefix
   1394      The transient from which this suffix command was invoked.  The
   1395      returned value is a ‘transient-prefix’ object, which holds
   1396      information associated with the transient prefix command.
   1397 
   1398  -- Variable: transient-active-prefix
   1399      This function returns the active transient object.  Return ‘nil’ if
   1400      there is no active transient, if the transient buffer isn’t shown,
   1401      and while the active transient is suspended (e.g., while the
   1402      minibuffer is in use).
   1403 
   1404      Unlike ‘transient-current-prefix’, which is only ever non-‘nil’ in
   1405      code that is run directly by a command that is invoked while a
   1406      transient is current, this function is also suitable for use in
   1407      asynchronous code, such as timers and callbacks (this function’s
   1408      main use-case).
   1409 
   1410      If optional PREFIXES is non-‘nil’, it must be a list of prefix
   1411      command symbols, in which case the active transient object is only
   1412      returned if it matches one of the PREFIXES."
   1413 
   1414 
   1415 File: transient.info,  Node: Transient State,  Prev: Using Infix Arguments,  Up: Defining New Commands
   1416 
   1417 4.6 Transient State
   1418 ===================
   1419 
   1420 Invoking a transient prefix command “activates” the respective
   1421 transient, i.e., it puts a transient keymap into effect, which binds the
   1422 transient’s infix and suffix commands.
   1423 
   1424    The default behavior while a transient is active is as follows:
   1425 
   1426    • Invoking an infix command does not affect the transient state; the
   1427      transient remains active.
   1428 
   1429    • Invoking a (non-infix) suffix command “deactivates” the transient
   1430      state by removing the transient keymap and performing some
   1431      additional cleanup.
   1432 
   1433    • Invoking a command that is bound in a keymap other than the
   1434      transient keymap is disallowed and trying to do so results in a
   1435      warning.  This does not “deactivate” the transient.
   1436 
   1437    The behavior can be changed for all suffixes of a particular prefix
   1438 and/or for individual suffixes.  The values should nearly always be
   1439 booleans, but certain functions, called “pre-commands”, can also be
   1440 used.  These functions are named ‘transient--do-VERB’, and the symbol
   1441 ‘VERB’ can be used as a shorthand.
   1442 
   1443    A boolean is interpreted as answering the question "does the
   1444 transient stay active, when this command is invoked?"  ‘t’ means that
   1445 the transient stays active, while ‘nil’ means that invoking the command
   1446 exits the transient.
   1447 
   1448    Note that when the suffix is a “sub-prefix”, invoking that command
   1449 always activates that sub-prefix, causing the outer prefix to no longer
   1450 be active and displayed.  Here ‘t’ means that when you exit the inner
   1451 prefix, then the outer prefix becomes active again, while ‘nil’ means
   1452 that all outer prefixes are exited at once.
   1453 
   1454    • The behavior for non-suffixes can be set for a particular prefix,
   1455      by the prefix’s ‘transient-non-suffix’ slot to a boolean, a
   1456      suitable pre-command function, or a shorthand for such a function.
   1457      See *note Pre-commands for Non-Suffixes::.
   1458 
   1459    • The common behavior for the suffixes of a particular prefix can be
   1460      set using the prefix’s ‘transient-suffixes’ slot.
   1461 
   1462      The value specified in this slot does *not* affect infixes.
   1463      Because it affects both regular suffixes as well as sub-prefixes,
   1464      which have different needs, it is best to avoid explicitly
   1465      specifying a function.
   1466 
   1467    • The behavior of an individual suffix can be changed using its
   1468      ‘transient’ slot.  While it is usually best to use a boolean, for
   1469      this slot it can occasionally make sense to specify a function
   1470      explicitly.
   1471 
   1472      Note that this slot can be set when defining a suffix command using
   1473      ‘transient-define-suffix’ and/or in the definition of the prefix.
   1474      If set in both places, then the latter takes precedence, as usual.
   1475 
   1476    The available pre-command functions are documented in the following
   1477 sub-sections.  They are called by ‘transient--pre-command’, a function
   1478 on ‘pre-command-hook’, and the value that they return determines whether
   1479 the transient is exited.  To do so the value of one of the constants
   1480 ‘transient--exit’ or ‘transient--stay’ is used (that way we don’t have
   1481 to remember if ‘t’ means “exit” or “stay”).
   1482 
   1483    Additionally, these functions may change the value of ‘this-command’
   1484 (which explains why they have to be called using ‘pre-command-hook’),
   1485 call ‘transient-export’, ‘transient--stack-zap’ or
   1486 ‘transient--stack-push’; and set the values of ‘transient--exitp’,
   1487 ‘transient--helpp’ or ‘transient--editp’.
   1488 
   1489    For completeness sake, some notes about complications:
   1490 
   1491    • The transient-ness of certain built-in suffix commands is specified
   1492      using ‘transient-predicate-map’.  This is a special keymap, which
   1493      binds commands to pre-commands (as opposed to keys to commands) and
   1494      takes precedence over the prefix’s ‘transient-suffix’ slot, but not
   1495      the suffix’s ‘transient’ slot.
   1496 
   1497    • While a sub-prefix is active we nearly always want ‘C-g’ to take
   1498      the user back to the “super-prefix”, even when the other suffixes
   1499      don’t do that.  However, in rare cases this may not be desirable,
   1500      and that makes the following complication necessary:
   1501 
   1502      For ‘transient-suffix’ objects the ‘transient’ slot is unbound.  We
   1503      can ignore that for the most part because ‘nil’ and the slot being
   1504      unbound are treated as equivalent, and mean “do exit”.  That isn’t
   1505      actually true for suffixes that are sub-prefixes though.  For such
   1506      suffixes unbound means “do exit but allow going back”, which is the
   1507      default, while ‘nil’ means “do exit permanently”, which requires
   1508      that slot to be explicitly set to that value.
   1509 
   1510 Pre-commands for Infixes
   1511 ------------------------
   1512 
   1513 The default for infixes is ‘transient--do-stay’.  This is also the only
   1514 function that makes sense for infixes, which is why this predicate is
   1515 used even if the value of the prefix’s ‘transient-suffix’ slot is ‘t’.
   1516 In extremely rare cases, one might want to use something else, which can
   1517 be done by setting the infix’s ‘transient’ slot directly.
   1518 
   1519  -- Function: transient--do-stay
   1520      Call the command without exporting variables and stay transient.
   1521 
   1522 Pre-commands for Suffixes
   1523 -------------------------
   1524 
   1525 By default, invoking a suffix causes the transient to be exited.
   1526 
   1527    The behavior for an individual suffix command can be changed by
   1528 setting its ‘transient’ slot to a boolean (which is highly recommended),
   1529 or to one of the following pre-commands.
   1530 
   1531  -- Function: transient--do-exit
   1532      Call the command after exporting variables and exit the transient.
   1533 
   1534  -- Function: transient--do-return
   1535      Call the command after exporting variables and return to the parent
   1536      prefix.  If there is no parent prefix, then call
   1537      ‘transient--do-exit’.
   1538 
   1539  -- Function: transient--do-call
   1540      Call the command after exporting variables and stay transient.
   1541 
   1542    The following pre-commands are only suitable for sub-prefixes.  It is
   1543 not necessary to explicitly use these predicates because the correct
   1544 predicate is automatically picked based on the value of the ‘transient’
   1545 slot for the sub-prefix itself.
   1546 
   1547  -- Function: transient--do-recurse
   1548      Call the transient prefix command, preparing for return to active
   1549      transient.
   1550 
   1551      Whether we actually return to the parent transient is ultimately
   1552      under the control of each invoked suffix.  The difference between
   1553      this pre-command and ‘transient--do-stack’ is that it changes the
   1554      value of the ‘transient-suffix’ slot to ‘t’.
   1555 
   1556      If there is no parent transient, then only call this command and
   1557      skip the second step.
   1558 
   1559  -- Function: transient--do-stack
   1560      Call the transient prefix command, stacking the active transient.
   1561      Push the active transient to the transient stack.
   1562 
   1563      Unless ‘transient--do-recurse’ is explicitly used, this pre-command
   1564      is automatically used for suffixes that are prefixes themselves,
   1565      i.e., for sub-prefixes.
   1566 
   1567  -- Function: transient--do-replace
   1568      Call the transient prefix command, replacing the active transient.
   1569      Do not push the active transient to the transient stack.
   1570 
   1571      Unless ‘transient--do-recurse’ is explicitly used, this pre-command
   1572      is automatically used for suffixes that are prefixes themselves,
   1573      i.e., for sub-prefixes.
   1574 
   1575  -- Function: transient--do-suspend
   1576      Suspend the active transient, saving the transient stack.
   1577 
   1578      This is used by the command ‘transient-suspend’ and optionally also
   1579      by “external events” such as ‘handle-switch-frame’.  Such bindings
   1580      should be added to ‘transient-predicate-map’.
   1581 
   1582 Pre-commands for Non-Suffixes
   1583 -----------------------------
   1584 
   1585 By default, non-suffixes (commands that are bound in other keymaps
   1586 beside the transient keymap) cannot be invoked.  Trying to invoke such a
   1587 command results in a warning and the transient stays active.
   1588 
   1589    If you want a different behavior, then set the ‘transient-non-suffix’
   1590 slot of the transient prefix command.  The value should be a boolean,
   1591 answering the question, "is it allowed to invoke non-suffix commands?, a
   1592 pre-command function, or a shorthand for such a function.
   1593 
   1594    If the value is ‘t’, then non-suffixes can be invoked, when it is
   1595 ‘nil’ (the default) then they cannot be invoked.
   1596 
   1597    The only other recommended value is ‘leave’.  If that is used, then
   1598 non-suffixes can be invoked, but if one is invoked, then that exits the
   1599 transient.
   1600 
   1601  -- Function: transient--do-warn
   1602      Call ‘transient-undefined’ and stay transient.
   1603 
   1604  -- Function: transient--do-stay
   1605      Call the command without exporting variables and stay transient.
   1606 
   1607  -- Function: transient--do-leave
   1608      Call the command without exporting variables and exit the
   1609      transient.
   1610 
   1611 Special Pre-Commands
   1612 --------------------
   1613 
   1614  -- Function: transient--do-quit-one
   1615      If active, quit help or edit mode, else exit the active transient.
   1616 
   1617      This is used when the user pressed ‘C-g’.
   1618 
   1619  -- Function: transient--do-quit-all
   1620      Exit all transients without saving the transient stack.
   1621 
   1622      This is used when the user pressed ‘C-q’.
   1623 
   1624  -- Function: transient--do-suspend
   1625      Suspend the active transient, saving the transient stack.
   1626 
   1627      This is used when the user pressed ‘C-z’.
   1628 
   1629 
   1630 File: transient.info,  Node: Classes and Methods,  Next: FAQ,  Prev: Defining New Commands,  Up: Top
   1631 
   1632 5 Classes and Methods
   1633 *********************
   1634 
   1635 Transient uses classes and generic functions to make it possible to
   1636 define new types of suffix commands that are similar to existing types,
   1637 but behave differently in some aspects.  It does the same for groups and
   1638 prefix commands, though at least for prefix commands that *currently*
   1639 appears to be less important.
   1640 
   1641    Every prefix, infix and suffix command is associated with an object,
   1642 which holds information that controls certain aspects of its behavior.
   1643 This happens in two ways.
   1644 
   1645    • Associating a command with a certain class gives the command a
   1646      type.  This makes it possible to use generic functions to do
   1647      certain things that have to be done differently depending on what
   1648      type of command it acts on.
   1649 
   1650      That in turn makes it possible for third-parties to add new types
   1651      without having to convince the maintainer of Transient that that
   1652      new type is important enough to justify adding a special case to a
   1653      dozen or so functions.
   1654 
   1655    • Associating a command with an object makes it possible to easily
   1656      store information that is specific to that particular command.
   1657 
   1658      Two commands may have the same type, but obviously their key
   1659      bindings and descriptions still have to be different, for example.
   1660 
   1661      The values of some slots are functions.  The ‘reader’ slot for
   1662      example holds a function that is used to read a new value for an
   1663      infix command.  The values of such slots are regular functions.
   1664 
   1665      Generic functions are used when a function should do something
   1666      different based on the type of the command, i.e., when all commands
   1667      of a certain type should behave the same way but different from the
   1668      behavior for other types.  Object slots that hold a regular
   1669      function as value are used when the task that they perform is
   1670      likely to differ even between different commands of the same type.
   1671 
   1672 * Menu:
   1673 
   1674 * Group Classes::
   1675 * Group Methods::
   1676 * Prefix Classes::
   1677 * Suffix Classes::
   1678 * Suffix Methods::
   1679 * Prefix Slots::
   1680 * Suffix Slots::
   1681 * Predicate Slots::
   1682 
   1683 
   1684 File: transient.info,  Node: Group Classes,  Next: Group Methods,  Up: Classes and Methods
   1685 
   1686 5.1 Group Classes
   1687 =================
   1688 
   1689 The type of a group can be specified using the ‘:class’ property at the
   1690 beginning of the class specification, e.g., ‘[:class transient-columns
   1691 ...]’ in a call to ‘transient-define-prefix’.
   1692 
   1693    • The abstract ‘transient-child’ class is the base class of both
   1694      ‘transient-group’ (and therefore all groups) as well as of
   1695      ‘transient-suffix’ (and therefore all suffix and infix commands).
   1696 
   1697      This class exists because the elements (or “children”) of certain
   1698      groups can be other groups instead of suffix and infix commands.
   1699 
   1700    • The abstract ‘transient-group’ class is the superclass of all other
   1701      group classes.
   1702 
   1703    • The ‘transient-column’ class is the simplest group.
   1704 
   1705      This is the default “flat” group.  If the class is not specified
   1706      explicitly and the first element is not a vector (i.e., not a
   1707      group), then this class is used.
   1708 
   1709      This class displays each element on a separate line.
   1710 
   1711    • The ‘transient-row’ class displays all elements on a single line.
   1712 
   1713    • The ‘transient-columns’ class displays commands organized in
   1714      columns.
   1715 
   1716      Direct elements have to be groups whose elements have to be
   1717      commands or strings.  Each subgroup represents a column.  This
   1718      class takes care of inserting the subgroups’ elements.
   1719 
   1720      This is the default “nested” group.  If the class is not specified
   1721      explicitly and the first element is a vector (i.e., a group), then
   1722      this class is used.
   1723 
   1724    • The ‘transient-subgroups’ class wraps other groups.
   1725 
   1726      Direct elements have to be groups whose elements have to be
   1727      commands or strings.  This group inserts an empty line between
   1728      subgroups.  The subgroups themselves are responsible for displaying
   1729      their elements.
   1730 
   1731 
   1732 File: transient.info,  Node: Group Methods,  Next: Prefix Classes,  Prev: Group Classes,  Up: Classes and Methods
   1733 
   1734 5.2 Group Methods
   1735 =================
   1736 
   1737  -- Function: transient-setup-children group children
   1738      This generic function can be used to setup the children or a group.
   1739 
   1740      The default implementation usually just returns the children
   1741      unchanged, but if the ‘setup-children’ slot of GROUP is non-‘nil’,
   1742      then it calls that function with CHILDREN as the only argument and
   1743      returns the value.
   1744 
   1745      The children are given as a (potentially empty) list consisting of
   1746      either group or suffix specifications.  These functions can make
   1747      arbitrary changes to the children including constructing new
   1748      children from scratch.
   1749 
   1750  -- Function: transient--insert-group group
   1751      This generic function formats the group and its elements and
   1752      inserts the result into the current buffer, which is a temporary
   1753      buffer.  The contents of that buffer are later inserted into the
   1754      popup buffer.
   1755 
   1756      Functions that are called by this function may need to operate in
   1757      the buffer from which the transient was called.  To do so they can
   1758      temporarily make the ‘transient--source-buffer’ the current buffer.
   1759 
   1760 
   1761 File: transient.info,  Node: Prefix Classes,  Next: Suffix Classes,  Prev: Group Methods,  Up: Classes and Methods
   1762 
   1763 5.3 Prefix Classes
   1764 ==================
   1765 
   1766 Currently the ‘transient-prefix’ class is being used for all prefix
   1767 commands and there is only a single generic function that can be
   1768 specialized based on the class of a prefix command.
   1769 
   1770  -- Function: transient--history-init obj
   1771      This generic function is called while setting up the transient and
   1772      is responsible for initializing the ‘history’ slot.  This is the
   1773      transient-wide history; many individual infixes also have a history
   1774      of their own.
   1775 
   1776      The default (and currently only) method extracts the value from the
   1777      global variable ‘transient-history’.
   1778 
   1779    A transient prefix command’s object is stored in the
   1780 ‘transient--prefix’ property of the command symbol.  While a transient
   1781 is active, a clone of that object is stored in the variable
   1782 ‘transient--prefix’.  A clone is used because some changes that are made
   1783 to the active transient’s object should not affect later invocations.
   1784 
   1785 
   1786 File: transient.info,  Node: Suffix Classes,  Next: Suffix Methods,  Prev: Prefix Classes,  Up: Classes and Methods
   1787 
   1788 5.4 Suffix Classes
   1789 ==================
   1790 
   1791    • All suffix and infix classes derive from ‘transient-suffix’, which
   1792      in turn derives from ‘transient-child’, from which
   1793      ‘transient-group’ also derives (see *note Group Classes::).
   1794 
   1795    • All infix classes derive from the abstract ‘transient-infix’ class,
   1796      which in turn derives from the ‘transient-suffix’ class.
   1797 
   1798      Infixes are a special type of suffixes.  The primary difference is
   1799      that infixes always use the ‘transient--do-stay’ pre-command, while
   1800      non-infix suffixes use a variety of pre-commands (see *note
   1801      Transient State::).  Doing that is most easily achieved by using
   1802      this class, though theoretically it would be possible to define an
   1803      infix class that does not do so.  If you do that then you get to
   1804      implement many methods.
   1805 
   1806      Also, infixes and non-infix suffixes are usually defined using
   1807      different macros (see *note Defining Suffix and Infix Commands::).
   1808 
   1809    • Classes used for infix commands that represent arguments should be
   1810      derived from the abstract ‘transient-argument’ class.
   1811 
   1812    • The ‘transient-switch’ class (or a derived class) is used for infix
   1813      arguments that represent command-line switches (arguments that do
   1814      not take a value).
   1815 
   1816    • The ‘transient-option’ class (or a derived class) is used for infix
   1817      arguments that represent command-line options (arguments that do
   1818      take a value).
   1819 
   1820    • The ‘transient-switches’ class can be used for a set of mutually
   1821      exclusive command-line switches.
   1822 
   1823    • The ‘transient-files’ class can be used for a ‘--’ argument that
   1824      indicates that all remaining arguments are files.
   1825 
   1826    • Classes used for infix commands that represent variables should
   1827      derived from the abstract ‘transient-variable’ class.
   1828 
   1829    • The ‘transient-information’ class is special in that suffixes that
   1830      use this class are not associated with a command and thus also not
   1831      with any key binding.  Such suffixes are only used to display
   1832      arbitrary information, and that anywhere a suffix can appear.
   1833      Display-only suffix specifications take this form:
   1834 
   1835           ([LEVEL] :info DESCRIPTION [KEYWORD VALUE]...)
   1836 
   1837      The ‘:info’ keyword argument replaces the ‘:description’ keyword
   1838      used for other suffix classes.  Other keyword arguments that you
   1839      might want to set, include ‘:face’, predicate keywords (such as
   1840      ‘:if’), and ‘:format’.  By default the value of ‘:format’ includes
   1841      ‘%k’, which for this class is replaced with the empty string or
   1842      spaces, if keys are being padded in the containing group.
   1843 
   1844    Magit defines additional classes, which can serve as examples for the
   1845 fancy things you can do without modifying Transient.  Some of these
   1846 classes will likely get generalized and added to Transient.  For now
   1847 they are very much subject to change and not documented.
   1848 
   1849 
   1850 File: transient.info,  Node: Suffix Methods,  Next: Prefix Slots,  Prev: Suffix Classes,  Up: Classes and Methods
   1851 
   1852 5.5 Suffix Methods
   1853 ==================
   1854 
   1855 To get information about the methods implementing these generic
   1856 functions use ‘describe-function’.
   1857 
   1858 * Menu:
   1859 
   1860 * Suffix Value Methods::
   1861 * Suffix Format Methods::
   1862 
   1863 
   1864 File: transient.info,  Node: Suffix Value Methods,  Next: Suffix Format Methods,  Up: Suffix Methods
   1865 
   1866 5.5.1 Suffix Value Methods
   1867 --------------------------
   1868 
   1869  -- Function: transient-init-value obj
   1870      This generic function sets the initial value of the object OBJ.
   1871 
   1872      This function is called for all suffix commands, but unless a
   1873      concrete method is implemented this falls through to the default
   1874      implementation, which is a noop.  In other words this usually only
   1875      does something for infix commands, but note that this is not
   1876      implemented for the abstract class ‘transient-infix’, so if your
   1877      class derives from that directly, then you must implement a method.
   1878 
   1879  -- Function: transient-infix-read obj
   1880      This generic function determines the new value of the infix object
   1881      OBJ.
   1882 
   1883      This function merely determines the value; ‘transient-infix-set’ is
   1884      used to actually store the new value in the object.
   1885 
   1886      For most infix classes this is done by reading a value from the
   1887      user using the reader specified by the ‘reader’ slot (using the
   1888      ‘transient-infix-value’ method described below).
   1889 
   1890      For some infix classes the value is changed without reading
   1891      anything in the minibuffer, i.e., the mere act of invoking the
   1892      infix command determines what the new value should be, based on the
   1893      previous value.
   1894 
   1895  -- Function: transient-prompt obj
   1896      This generic function returns the prompt to be used to read infix
   1897      object OBJ’s value.
   1898 
   1899  -- Function: transient-infix-set obj value
   1900      This generic function sets the value of infix object OBJ to VALUE.
   1901 
   1902  -- Function: transient-infix-value obj
   1903      This generic function returns the value of the suffix object OBJ.
   1904 
   1905      This function is called by ‘transient-args’ (which see), meaning
   1906      this function is how the value of a transient is determined so that
   1907      the invoked suffix command can use it.
   1908 
   1909      Currently most values are strings, but that is not set in stone.
   1910      ‘nil’ is not a value, it means “no value”.
   1911 
   1912      Usually only infixes have a value, but see the method for
   1913      ‘transient-suffix’.
   1914 
   1915  -- Function: transient-init-scope obj
   1916      This generic function sets the scope of the suffix object OBJ.
   1917 
   1918      The scope is actually a property of the transient prefix, not of
   1919      individual suffixes.  However it is possible to invoke a suffix
   1920      command directly instead of from a transient.  In that case, if the
   1921      suffix expects a scope, then it has to determine that itself and
   1922      store it in its ‘scope’ slot.
   1923 
   1924      This function is called for all suffix commands, but unless a
   1925      concrete method is implemented this falls through to the default
   1926      implementation, which is a noop.
   1927 
   1928 
   1929 File: transient.info,  Node: Suffix Format Methods,  Prev: Suffix Value Methods,  Up: Suffix Methods
   1930 
   1931 5.5.2 Suffix Format Methods
   1932 ---------------------------
   1933 
   1934  -- Function: transient-format obj
   1935      This generic function formats and returns OBJ for display.
   1936 
   1937      When this function is called, then the current buffer is some
   1938      temporary buffer.  If you need the buffer from which the prefix
   1939      command was invoked to be current, then do so by temporarily making
   1940      ‘transient--source-buffer’ current.
   1941 
   1942  -- Function: transient-format-key obj
   1943      This generic function formats OBJ’s ‘key’ for display and returns
   1944      the result.
   1945 
   1946  -- Function: transient-format-description obj
   1947      This generic function formats OBJ’s ‘description’ for display and
   1948      returns the result.
   1949 
   1950  -- Function: transient-format-value obj
   1951      This generic function formats OBJ’s value for display and returns
   1952      the result.
   1953 
   1954  -- Function: transient-show-help obj
   1955      Show help for the prefix, infix or suffix command represented by
   1956      OBJ.
   1957 
   1958      For prefixes, show the info manual, if that is specified using the
   1959      ‘info-manual’ slot.  Otherwise, show the manpage if that is
   1960      specified using the ‘man-page’ slot.  Otherwise, show the command’s
   1961      documentation string.
   1962 
   1963      For suffixes, show the command’s documentation string.
   1964 
   1965      For infixes, show the manpage if that is specified.  Otherwise show
   1966      the command’s documentation string.
   1967 
   1968 
   1969 File: transient.info,  Node: Prefix Slots,  Next: Suffix Slots,  Prev: Suffix Methods,  Up: Classes and Methods
   1970 
   1971 5.6 Prefix Slots
   1972 ================
   1973 
   1974    • ‘show-help’, ‘man-page’ or ‘info-manual’ can be used to specify the
   1975      documentation for the prefix and its suffixes.  The command
   1976      ‘transient-help’ uses the method ‘transient-show-help’ (which see)
   1977      to lookup and use these values.
   1978 
   1979    • ‘history-key’ If multiple prefix commands should share a single
   1980      value, then this slot has to be set to the same value for all of
   1981      them.  You probably don’t want that.
   1982 
   1983    • ‘transient-suffix’ and ‘transient-non-suffix’ play a part when
   1984      determining whether the currently active transient prefix command
   1985      remains active/transient when a suffix or arbitrary non-suffix
   1986      command is invoked.  See *note Transient State::.
   1987 
   1988    • ‘refresh-suffixes’ Normally suffix objects and keymaps are only
   1989      setup once, when the prefix is invoked.  Setting this to ‘t’,
   1990      causes them to be recreated after every command.  This is useful
   1991      when using ‘:if...’ predicates, and those need to be rerun for some
   1992      reason.  Doing this is somewhat costly, and there is a risk of
   1993      losing state, so this is disabled by default and still considered
   1994      experimental.
   1995 
   1996    • ‘incompatible’ A list of lists.  Each sub-list specifies a set of
   1997      mutually exclusive arguments.  Enabling one of these arguments
   1998      causes the others to be disabled.  An argument may appear in
   1999      multiple sub-lists.  Arguments must me given in the same form as
   2000      used in the ‘argument’ or ‘argument-format’ slot of the respective
   2001      suffix objects, usually something like ‘--switch’ or ‘--option=%s’.
   2002      For options and ‘transient-switches’ suffixes it is also possible
   2003      to match against a specific value, as returned by
   2004      ‘transient-infix-value’, for example, ‘--option=one’.
   2005 
   2006    • ‘scope’ For some transients it might be necessary to have a sort of
   2007      secondary value, called a “scope”.  See ‘transient-define-prefix’.
   2008 
   2009 Internal Prefix Slots
   2010 ---------------------
   2011 
   2012 These slots are mostly intended for internal use.  They should not be
   2013 set in calls to ‘transient-define-prefix’.
   2014 
   2015    • ‘prototype’ When a transient prefix command is invoked, then a
   2016      clone of that object is stored in the global variable
   2017      ‘transient--prefix’ and the prototype is stored in the clone’s
   2018      ‘prototype’ slot.
   2019 
   2020    • ‘command’ The command, a symbol.  Each transient prefix command
   2021      consists of a command, which is stored in a symbol’s function slot
   2022      and an object, which is stored in the ‘transient--prefix’ property
   2023      of the same symbol.
   2024 
   2025    • ‘level’ The level of the prefix commands.  The suffix commands
   2026      whose layer is equal or lower are displayed.  See *note Enabling
   2027      and Disabling Suffixes::.
   2028 
   2029    • ‘value’ The likely outdated value of the prefix.  Instead of
   2030      accessing this slot directly you should use the function
   2031      ‘transient-get-value’, which is guaranteed to return the up-to-date
   2032      value.
   2033 
   2034    • ‘history’ and ‘history-pos’ are used to keep track of historic
   2035      values.  Unless you implement your own ‘transient-infix-read’
   2036      method you should not have to deal with these slots.
   2037 
   2038 
   2039 File: transient.info,  Node: Suffix Slots,  Next: Predicate Slots,  Prev: Prefix Slots,  Up: Classes and Methods
   2040 
   2041 5.7 Suffix Slots
   2042 ================
   2043 
   2044 Here we document most of the slots that are only available for suffix
   2045 objects.  Some slots are shared by suffix and group objects, they are
   2046 documented in *note Predicate Slots::.
   2047 
   2048    Also see *note Suffix Classes::.
   2049 
   2050 Slots of ‘transient-suffix’
   2051 ---------------------------
   2052 
   2053    • ‘key’ The key, a key vector or a key description string.
   2054 
   2055    • ‘command’ The command, a symbol.
   2056 
   2057    • ‘transient’ Whether to stay transient.  See *note Transient
   2058      State::.
   2059 
   2060    • ‘format’ The format used to display the suffix in the popup buffer.
   2061      It must contain the following %-placeholders:
   2062 
   2063         • ‘%k’ For the key.
   2064         • ‘%d’ For the description.
   2065         • ‘%v’ For the infix value.  Non-infix suffixes don’t have a
   2066           value.
   2067 
   2068    • ‘description’ The description, either a string or a function, which
   2069      is called with zero or one argument (the suffix object), and
   2070      returns a string.
   2071 
   2072    • ‘face’ Face used for the description.  In simple cases it is easier
   2073      to use this instead of using a function as ‘description’ and adding
   2074      the styling there.  ‘face’ is appended using
   2075      ‘add-face-text-property’.
   2076 
   2077    • ‘show-help’ A function used to display help for the suffix.  If
   2078      unspecified, the prefix controls how help is displayed for its
   2079      suffixes.
   2080 
   2081 Slots of ‘transient-infix’
   2082 --------------------------
   2083 
   2084 Some of these slots are only meaningful for some of the subclasses.
   2085 They are defined here anyway to allow sharing certain methods.
   2086 
   2087    • ‘argument’ The long argument, e.g., ‘--verbose’.
   2088 
   2089    • ‘shortarg’ The short argument, e.g., ‘-v’.
   2090 
   2091    • ‘value’ The value.  Should not be accessed directly.
   2092 
   2093    • ‘init-value’ Function that is responsible for setting the object’s
   2094      value.  If bound, then this is called with the object as the only
   2095      argument.  Usually this is not bound, in which case the object’s
   2096      primary ‘transient-init-value’ method is called instead.
   2097 
   2098    • ‘unsavable’ Whether the value of the suffix is not saved as part of
   2099      the prefixes.
   2100 
   2101    • ‘multi-value’ For options, whether the option can have multiple
   2102      values.  If this is non-‘nil’, then the values are read using
   2103      ‘completing-read-multiple’ by default and if you specify your own
   2104      reader, then it should read the values using that function or
   2105      similar.
   2106 
   2107      Supported non-‘nil’ values are:
   2108 
   2109         • Use ‘rest’ for an option that can have multiple values.  This
   2110           is useful e.g., for an ‘--’ argument that indicates that all
   2111           remaining arguments are files (such as ‘git log -- file1
   2112           file2’).
   2113 
   2114           In the list returned by ‘transient-args’ such an option and
   2115           its values are represented by a single list of the form
   2116           ‘(ARGUMENT . VALUES)’.
   2117 
   2118         • Use ‘repeat’ for an option that can be specified multiple
   2119           times.
   2120 
   2121           In the list returned by ‘transient-args’ each instance of the
   2122           option and its value appears separately in the usual from, for
   2123           example: ‘("--another-argument" "--option=first"
   2124           "--option=second")’.
   2125 
   2126      In both cases the option’s values have to be specified in the
   2127      default value of a prefix using the same format as returned by
   2128      ‘transient-args’, e.g., ‘("--other" "--o=1" "--o=2" ("--" "f1"
   2129      "f2"))’.
   2130 
   2131    • ‘always-read’ For options, whether to read a value on every
   2132      invocation.  If this is ‘nil’, then options that have a value are
   2133      simply unset and have to be invoked a second time to set a new
   2134      value.
   2135 
   2136    • ‘allow-empty’ For options, whether the empty string is a valid
   2137      value.
   2138 
   2139    • ‘history-key’ The key used to store the history.  This defaults to
   2140      the command name.  This is useful when multiple infixes should
   2141      share the same history because their values are of the same kind.
   2142 
   2143    • ‘reader’ The function used to read the value of an infix.  Not used
   2144      for switches.  The function takes three arguments, PROMPT,
   2145      INITIAL-INPUT and HISTORY, and must return a string.
   2146 
   2147    • ‘prompt’ The prompt used when reading the value, either a string or
   2148      a function that takes the object as the only argument and which
   2149      returns a prompt string.
   2150 
   2151    • ‘choices’ A list of valid values, or a function that returns such a
   2152      list.  The latter is not implemented for ‘transient-switches’,
   2153      because I couldn’t think of a use-case.  How exactly the choices
   2154      are used varies depending on the class of the suffix.
   2155 
   2156 Slots of ‘transient-variable’
   2157 -----------------------------
   2158 
   2159    • ‘variable’ The variable.
   2160 
   2161 Slots of ‘transient-switches’
   2162 -----------------------------
   2163 
   2164    • ‘argument-format’ The display format.  Must contain ‘%s’, one of
   2165      the ‘choices’ is substituted for that.  E.g., ‘--%s-order’.
   2166 
   2167    • ‘argument-regexp’ The regexp used to match any one of the switches.
   2168      E.g., ‘\\(--\\(topo\\|author-date\\|date\\)-order\\)’.
   2169 
   2170 
   2171 File: transient.info,  Node: Predicate Slots,  Prev: Suffix Slots,  Up: Classes and Methods
   2172 
   2173 5.8 Predicate Slots
   2174 ===================
   2175 
   2176 Suffix and group objects share some predicate slots that control whether
   2177 a group or suffix should be available depending on some state.  Only one
   2178 of these slots can be used at the same time.  It is undefined what
   2179 happens if you use more than one.
   2180 
   2181    • ‘if’ Enable if predicate returns non-‘nil’.
   2182    • ‘if-not’ Enable if predicate returns ‘nil’.
   2183    • ‘if-non-nil’ Enable if variable’s value is non-‘nil’.
   2184    • ‘if-nil’ Enable if variable’s value is ‘nil’.
   2185    • ‘if-mode’ Enable if major-mode matches value.
   2186    • ‘if-not-mode’ Enable if major-mode does not match value.
   2187    • ‘if-derived’ Enable if major-mode derives from value.
   2188    • ‘if-not-derived’ Enable if major-mode does not derive from value.
   2189 
   2190    By default these predicates run when the prefix command is invoked,
   2191 but this can be changes, using the ‘refresh-suffixes’ prefix slot.  See
   2192 *note Prefix Slots::.
   2193 
   2194    One more slot is shared between group and suffix classes, ‘level’.
   2195 Like the slots documented above, it is a predicate, but it is used for a
   2196 different purpose.  The value has to be an integer between 1 and 7.
   2197 ‘level’ controls whether a suffix or a group should be available
   2198 depending on user preference.  See *note Enabling and Disabling
   2199 Suffixes::.
   2200 
   2201 
   2202 File: transient.info,  Node: FAQ,  Next: Keystroke Index,  Prev: Classes and Methods,  Up: Top
   2203 
   2204 Appendix A FAQ
   2205 **************
   2206 
   2207 A.1 Can I control how the popup buffer is displayed?
   2208 ====================================================
   2209 
   2210 Yes, see ‘transient-display-buffer-action’ in *note Configuration::.
   2211 
   2212 A.2 How can I copy text from the popup buffer?
   2213 ==============================================
   2214 
   2215 To be able to mark text in Transient’s popup buffer using the mouse, you
   2216 have to add the below binding.  Note that for technical reasons, the
   2217 region won’t be visualized, while doing so.  After you have quit the
   2218 transient popup, you will be able to yank it in another buffer.
   2219 
   2220      (keymap-set transient-predicate-map
   2221                  "<mouse-set-region>"
   2222                  #'transient--do-stay)
   2223 
   2224 A.3 How can I autoload prefix and suffix commands?
   2225 ==================================================
   2226 
   2227 If your package only supports Emacs 30, just prefix the definition with
   2228 ‘;;;###autoload’.  If your package supports released versions of Emacs,
   2229 you unfortunately have to use a long form autoload comment as described
   2230 in *note (elisp)Autoload::.
   2231 
   2232      ;;;###autoload (autoload 'magit-dispatch "magit" nil t)
   2233      (transient-define-prefix magit-dispatch ()
   2234        ...)
   2235 
   2236 A.4 How does Transient compare to prefix keys and universal arguments?
   2237 ======================================================================
   2238 
   2239 See
   2240 <https://github.com/magit/transient/wiki/Comparison-with-prefix-keys-and-universal-arguments>.
   2241 
   2242 A.5 How does Transient compare to Magit-Popup and Hydra?
   2243 ========================================================
   2244 
   2245 See
   2246 <https://github.com/magit/transient/wiki/Comparison-with-other-packages>.
   2247 
   2248 A.6 Why did some of the key bindings change?
   2249 ============================================
   2250 
   2251 You may have noticed that the bindings for some of the common commands
   2252 do *not* have the prefix ‘C-x’ and that furthermore some of these
   2253 commands are grayed out while others are not.  That unfortunately is a
   2254 bit confusing if the section of common commands is not shown
   2255 permanently, making the following explanation necessary.
   2256 
   2257    The purpose of usually hiding that section but showing it after the
   2258 user pressed the respective prefix key is to conserve space and not
   2259 overwhelm users with too much noise, while allowing the user to quickly
   2260 list common bindings on demand.
   2261 
   2262    That however should not keep us from using the best possible key
   2263 bindings.  The bindings that do use a prefix do so to avoid wasting too
   2264 many non-prefix bindings, keeping them available for use in individual
   2265 transients.  The bindings that do not use a prefix and that are *not*
   2266 grayed out are very important bindings that are *always* available, even
   2267 when invoking the “common command key prefix” or *any other*
   2268 transient-specific prefix.  The non-prefix keys that *are* grayed out
   2269 however, are not available when any incomplete prefix key sequence is
   2270 active.  They do not use the “common command key prefix” because it is
   2271 likely that users want to invoke them several times in a row and e.g.,
   2272 ‘M-p M-p M-p’ is much more convenient than ‘C-x M-p C-x M-p C-x M-p’.
   2273 
   2274    You may also have noticed that the “Set” command is bound to ‘C-x s’,
   2275 while Magit-Popup used to bind ‘C-c C-c’ instead.  I have seen several
   2276 users praise the latter binding (sic), so I did not change it
   2277 willy-nilly.  The reason that I changed it is that using different
   2278 prefix keys for different common commands, would have made the temporary
   2279 display of the common commands even more confusing, i.e., after pressing
   2280 ‘C-c’ all the bindings that begin with the ‘C-x’ prefix would be grayed
   2281 out.
   2282 
   2283    Using a single prefix for common commands key means that all other
   2284 potential prefix keys can be used for transient-specific commands
   2285 *without* the section of common commands also popping up.  ‘C-c’ in
   2286 particular is a prefix that I want to (and already do) use for Magit,
   2287 and also using that for a common command would prevent me from doing so.
   2288 
   2289    (Also see the next question.)
   2290 
   2291 A.7 Why does ‘q’ not quit popups anymore?
   2292 =========================================
   2293 
   2294 I agree that ‘q’ is a good binding for commands that quit something.
   2295 This includes quitting whatever transient is currently active, but it
   2296 also includes quitting whatever it is that some specific transient is
   2297 controlling.  The transient ‘magit-blame’ for example binds ‘q’ to the
   2298 command that turns ‘magit-blame-mode’ off.
   2299 
   2300    So I had to decide if ‘q’ should quit the active transient (like
   2301 Magit-Popup used to) or whether ‘C-g’ should do that instead, so that
   2302 ‘q’ could be bound in individual transient to whatever commands make
   2303 sense for them.  Because all other letters are already reserved for use
   2304 by individual transients, I have decided to no longer make an exception
   2305 for ‘q’.
   2306 
   2307    If you want to get ‘q’’s old binding back then you can do so.  Doing
   2308 that is a bit more complicated than changing a single key binding, so I
   2309 have implemented a function, ‘transient-bind-q-to-quit’ that makes the
   2310 necessary changes.  See its documentation string for more information.
   2311 
   2312 
   2313 File: transient.info,  Node: Keystroke Index,  Next: Command and Function Index,  Prev: FAQ,  Up: Top
   2314 
   2315 Appendix B Keystroke Index
   2316 **************************
   2317 
   2318 
   2319 * Menu:
   2320 
   2321 * C-g:                                   Aborting and Resuming Transients.
   2322                                                                (line 27)
   2323 * C-g <1>:                               Aborting and Resuming Transients.
   2324                                                                (line 27)
   2325 * C-h:                                   Getting Help for Suffix Commands.
   2326                                                                (line 11)
   2327 * C-M-n:                                 Using History.        (line 18)
   2328 * C-M-p:                                 Using History.        (line 13)
   2329 * C-q:                                   Aborting and Resuming Transients.
   2330                                                                (line 36)
   2331 * C-x a:                                 Enabling and Disabling Suffixes.
   2332                                                                (line 68)
   2333 * C-x C-k:                               Saving Values.        (line 29)
   2334 * C-x C-s:                               Saving Values.        (line 25)
   2335 * C-x l:                                 Enabling and Disabling Suffixes.
   2336                                                                (line 43)
   2337 * C-x n:                                 Using History.        (line 18)
   2338 * C-x p:                                 Using History.        (line 13)
   2339 * C-x s:                                 Saving Values.        (line 21)
   2340 * C-x t:                                 Common Suffix Commands.
   2341                                                                (line 18)
   2342 * C-z:                                   Aborting and Resuming Transients.
   2343                                                                (line 41)
   2344 
   2345 
   2346 File: transient.info,  Node: Command and Function Index,  Next: Variable Index,  Prev: Keystroke Index,  Up: Top
   2347 
   2348 Appendix C Command and Function Index
   2349 *************************************
   2350 
   2351 
   2352 * Menu:
   2353 
   2354 * transient--do-call:                    Transient State.     (line 125)
   2355 * transient--do-exit:                    Transient State.     (line 117)
   2356 * transient--do-leave:                   Transient State.     (line 193)
   2357 * transient--do-quit-all:                Transient State.     (line 205)
   2358 * transient--do-quit-one:                Transient State.     (line 200)
   2359 * transient--do-recurse:                 Transient State.     (line 133)
   2360 * transient--do-replace:                 Transient State.     (line 153)
   2361 * transient--do-return:                  Transient State.     (line 120)
   2362 * transient--do-stack:                   Transient State.     (line 145)
   2363 * transient--do-stay:                    Transient State.     (line 105)
   2364 * transient--do-stay <1>:                Transient State.     (line 190)
   2365 * transient--do-suspend:                 Transient State.     (line 161)
   2366 * transient--do-suspend <1>:             Transient State.     (line 210)
   2367 * transient--do-warn:                    Transient State.     (line 187)
   2368 * transient--history-init:               Prefix Classes.      (line  10)
   2369 * transient--insert-group:               Group Methods.       (line  19)
   2370 * transient-append-suffix:               Modifying Existing Transients.
   2371                                                               (line  51)
   2372 * transient-arg-value:                   Using Infix Arguments.
   2373                                                               (line  31)
   2374 * transient-args:                        Using Infix Arguments.
   2375                                                               (line  22)
   2376 * transient-define-argument:             Defining Suffix and Infix Commands.
   2377                                                               (line  57)
   2378 * transient-define-infix:                Defining Suffix and Infix Commands.
   2379                                                               (line  26)
   2380 * transient-define-prefix:               Defining Transients. (line  13)
   2381 * transient-define-suffix:               Defining Suffix and Infix Commands.
   2382                                                               (line   9)
   2383 * transient-format:                      Suffix Format Methods.
   2384                                                               (line   6)
   2385 * transient-format-description:          Suffix Format Methods.
   2386                                                               (line  18)
   2387 * transient-format-key:                  Suffix Format Methods.
   2388                                                               (line  14)
   2389 * transient-format-value:                Suffix Format Methods.
   2390                                                               (line  22)
   2391 * transient-get-suffix:                  Modifying Existing Transients.
   2392                                                               (line  73)
   2393 * transient-help:                        Getting Help for Suffix Commands.
   2394                                                               (line  11)
   2395 * transient-history-next:                Using History.       (line  18)
   2396 * transient-history-prev:                Using History.       (line  13)
   2397 * transient-infix-read:                  Suffix Value Methods.
   2398                                                               (line  16)
   2399 * transient-infix-set:                   Suffix Value Methods.
   2400                                                               (line  36)
   2401 * transient-infix-value:                 Suffix Value Methods.
   2402                                                               (line  39)
   2403 * transient-init-scope:                  Suffix Value Methods.
   2404                                                               (line  52)
   2405 * transient-init-value:                  Suffix Value Methods.
   2406                                                               (line   6)
   2407 * transient-insert-suffix:               Modifying Existing Transients.
   2408                                                               (line  49)
   2409 * transient-prompt:                      Suffix Value Methods.
   2410                                                               (line  32)
   2411 * transient-quit-all:                    Aborting and Resuming Transients.
   2412                                                               (line  36)
   2413 * transient-quit-one:                    Aborting and Resuming Transients.
   2414                                                               (line  27)
   2415 * transient-quit-seq:                    Aborting and Resuming Transients.
   2416                                                               (line  27)
   2417 * transient-remove-suffix:               Modifying Existing Transients.
   2418                                                               (line  70)
   2419 * transient-replace-suffix:              Modifying Existing Transients.
   2420                                                               (line  66)
   2421 * transient-reset:                       Saving Values.       (line  29)
   2422 * transient-resume:                      Aborting and Resuming Transients.
   2423                                                               (line  53)
   2424 * transient-save:                        Saving Values.       (line  25)
   2425 * transient-scroll-down:                 Other Commands.      (line  17)
   2426 * transient-scroll-up:                   Other Commands.      (line  12)
   2427 * transient-set:                         Saving Values.       (line  21)
   2428 * transient-set-level:                   Enabling and Disabling Suffixes.
   2429                                                               (line  43)
   2430 * transient-setup-children:              Group Methods.       (line   6)
   2431 * transient-show-help:                   Suffix Format Methods.
   2432                                                               (line  26)
   2433 * transient-suffix-put:                  Modifying Existing Transients.
   2434                                                               (line  77)
   2435 * transient-suffixes:                    Using Infix Arguments.
   2436                                                               (line  38)
   2437 * transient-suspend:                     Aborting and Resuming Transients.
   2438                                                               (line  41)
   2439 * transient-toggle-common:               Common Suffix Commands.
   2440                                                               (line  18)
   2441 * transient-toggle-level-limit:          Enabling and Disabling Suffixes.
   2442                                                               (line  68)
   2443 
   2444 
   2445 File: transient.info,  Node: Variable Index,  Next: Concept Index,  Prev: Command and Function Index,  Up: Top
   2446 
   2447 Appendix D Variable Index
   2448 *************************
   2449 
   2450 
   2451 * Menu:
   2452 
   2453 * transient-active-prefix:               Using Infix Arguments.
   2454                                                               (line  61)
   2455 * transient-align-variable-pitch:        Configuration.       (line 185)
   2456 * transient-current-command:             Using Infix Arguments.
   2457                                                               (line  52)
   2458 * transient-current-prefix:              Using Infix Arguments.
   2459                                                               (line  56)
   2460 * transient-current-suffixes:            Using Infix Arguments.
   2461                                                               (line  44)
   2462 * transient-default-level:               Enabling and Disabling Suffixes.
   2463                                                               (line  33)
   2464 * transient-detect-key-conflicts:        Configuration.       (line 210)
   2465 * transient-display-buffer-action:       Configuration.       (line  51)
   2466 * transient-enable-popup-navigation:     Configuration.       (line  36)
   2467 * transient-force-fixed-pitch:           Configuration.       (line 198)
   2468 * transient-force-single-column:         Configuration.       (line  93)
   2469 * transient-hide-during-minibuffer-read: Configuration.       (line 181)
   2470 * transient-highlight-higher-levels:     Configuration.       (line 223)
   2471 * transient-highlight-mismatched-keys:   Configuration.       (line 135)
   2472 * transient-history-file:                Using History.       (line  33)
   2473 * transient-history-limit:               Using History.       (line  37)
   2474 * transient-levels-file:                 Enabling and Disabling Suffixes.
   2475                                                               (line  38)
   2476 * transient-mode-line-format:            Configuration.       (line 102)
   2477 * transient-read-with-initial-input:     Configuration.       (line 174)
   2478 * transient-semantic-coloring:           Configuration.       (line 126)
   2479 * transient-show-common-commands:        Common Suffix Commands.
   2480                                                               (line  23)
   2481 * transient-show-popup:                  Configuration.       (line  15)
   2482 * transient-substitute-key-function:     Configuration.       (line 153)
   2483 * transient-values-file:                 Saving Values.       (line  31)
   2484 
   2485 
   2486 File: transient.info,  Node: Concept Index,  Next: GNU General Public License,  Prev: Variable Index,  Up: Top
   2487 
   2488 Appendix E Concept Index
   2489 ************************
   2490 
   2491 
   2492 * Menu:
   2493 
   2494 * aborting transients:                   Aborting and Resuming Transients.
   2495                                                                (line  6)
   2496 * classes and methods:                   Classes and Methods.  (line  6)
   2497 * command dispatchers:                   Technical Introduction.
   2498                                                                (line 39)
   2499 * common suffix commands:                Common Suffix Commands.
   2500                                                                (line  6)
   2501 * defining infix commands:               Defining Suffix and Infix Commands.
   2502                                                                (line  6)
   2503 * defining suffix commands:              Defining Suffix and Infix Commands.
   2504                                                                (line  6)
   2505 * disabling suffixes:                    Enabling and Disabling Suffixes.
   2506                                                                (line  6)
   2507 * enabling suffixes:                     Enabling and Disabling Suffixes.
   2508                                                                (line  6)
   2509 * getting help:                          Getting Help for Suffix Commands.
   2510                                                                (line  6)
   2511 * group specifications:                  Group Specifications. (line  6)
   2512 * invoking transients:                   Invoking Transients.  (line  6)
   2513 * levels:                                Enabling and Disabling Suffixes.
   2514                                                                (line 10)
   2515 * modifying existing transients:         Modifying Existing Transients.
   2516                                                                (line  6)
   2517 * quit transient:                        Aborting and Resuming Transients.
   2518                                                                (line  6)
   2519 * resuming transients:                   Aborting and Resuming Transients.
   2520                                                                (line  6)
   2521 * saving values of arguments:            Saving Values.        (line  6)
   2522 * scope of a transient:                  Defining Transients.  (line 43)
   2523 * suffix specifications:                 Suffix Specifications.
   2524                                                                (line  6)
   2525 * transient state:                       Transient State.      (line  6)
   2526 * transient-level:                       Enabling and Disabling Suffixes.
   2527                                                                (line 15)
   2528 * value history:                         Using History.        (line  6)
   2529 
   2530 
   2531 File: transient.info,  Node: GNU General Public License,  Prev: Concept Index,  Up: Top
   2532 
   2533 Appendix F GNU General Public License
   2534 *************************************
   2535 
   2536                         Version 3, 29 June 2007
   2537 
   2538      Copyright © 2007 Free Software Foundation, Inc. <https://fsf.org/>
   2539 
   2540      Everyone is permitted to copy and distribute verbatim copies of this
   2541      license document, but changing it is not allowed.
   2542 
   2543 Preamble
   2544 ========
   2545 
   2546 The GNU General Public License is a free, copyleft license for software
   2547 and other kinds of works.
   2548 
   2549    The licenses for most software and other practical works are designed
   2550 to take away your freedom to share and change the works.  By contrast,
   2551 the GNU General Public License is intended to guarantee your freedom to
   2552 share and change all versions of a program—to make sure it remains free
   2553 software for all its users.  We, the Free Software Foundation, use the
   2554 GNU General Public License for most of our software; it applies also to
   2555 any other work released this way by its authors.  You can apply it to
   2556 your programs, too.
   2557 
   2558    When we speak of free software, we are referring to freedom, not
   2559 price.  Our General Public Licenses are designed to make sure that you
   2560 have the freedom to distribute copies of free software (and charge for
   2561 them if you wish), that you receive source code or can get it if you
   2562 want it, that you can change the software or use pieces of it in new
   2563 free programs, and that you know you can do these things.
   2564 
   2565    To protect your rights, we need to prevent others from denying you
   2566 these rights or asking you to surrender the rights.  Therefore, you have
   2567 certain responsibilities if you distribute copies of the software, or if
   2568 you modify it: responsibilities to respect the freedom of others.
   2569 
   2570    For example, if you distribute copies of such a program, whether
   2571 gratis or for a fee, you must pass on to the recipients the same
   2572 freedoms that you received.  You must make sure that they, too, receive
   2573 or can get the source code.  And you must show them these terms so they
   2574 know their rights.
   2575 
   2576    Developers that use the GNU GPL protect your rights with two steps:
   2577 (1) assert copyright on the software, and (2) offer you this License
   2578 giving you legal permission to copy, distribute and/or modify it.
   2579 
   2580    For the developers’ and authors’ protection, the GPL clearly explains
   2581 that there is no warranty for this free software.  For both users’ and
   2582 authors’ sake, the GPL requires that modified versions be marked as
   2583 changed, so that their problems will not be attributed erroneously to
   2584 authors of previous versions.
   2585 
   2586    Some devices are designed to deny users access to install or run
   2587 modified versions of the software inside them, although the manufacturer
   2588 can do so.  This is fundamentally incompatible with the aim of
   2589 protecting users’ freedom to change the software.  The systematic
   2590 pattern of such abuse occurs in the area of products for individuals to
   2591 use, which is precisely where it is most unacceptable.  Therefore, we
   2592 have designed this version of the GPL to prohibit the practice for those
   2593 products.  If such problems arise substantially in other domains, we
   2594 stand ready to extend this provision to those domains in future versions
   2595 of the GPL, as needed to protect the freedom of users.
   2596 
   2597    Finally, every program is threatened constantly by software patents.
   2598 States should not allow patents to restrict development and use of
   2599 software on general-purpose computers, but in those that do, we wish to
   2600 avoid the special danger that patents applied to a free program could
   2601 make it effectively proprietary.  To prevent this, the GPL assures that
   2602 patents cannot be used to render the program non-free.
   2603 
   2604    The precise terms and conditions for copying, distribution and
   2605 modification follow.
   2606 
   2607 TERMS AND CONDITIONS
   2608 ====================
   2609 
   2610   0. Definitions.
   2611 
   2612      “This License” refers to version 3 of the GNU General Public
   2613      License.
   2614 
   2615      “Copyright” also means copyright-like laws that apply to other
   2616      kinds of works, such as semiconductor masks.
   2617 
   2618      “The Program” refers to any copyrightable work licensed under this
   2619      License.  Each licensee is addressed as “you”.  “Licensees” and
   2620      “recipients” may be individuals or organizations.
   2621 
   2622      To “modify” a work means to copy from or adapt all or part of the
   2623      work in a fashion requiring copyright permission, other than the
   2624      making of an exact copy.  The resulting work is called a “modified
   2625      version” of the earlier work or a work “based on” the earlier work.
   2626 
   2627      A “covered work” means either the unmodified Program or a work
   2628      based on the Program.
   2629 
   2630      To “propagate” a work means to do anything with it that, without
   2631      permission, would make you directly or secondarily liable for
   2632      infringement under applicable copyright law, except executing it on
   2633      a computer or modifying a private copy.  Propagation includes
   2634      copying, distribution (with or without modification), making
   2635      available to the public, and in some countries other activities as
   2636      well.
   2637 
   2638      To “convey” a work means any kind of propagation that enables other
   2639      parties to make or receive copies.  Mere interaction with a user
   2640      through a computer network, with no transfer of a copy, is not
   2641      conveying.
   2642 
   2643      An interactive user interface displays “Appropriate Legal Notices”
   2644      to the extent that it includes a convenient and prominently visible
   2645      feature that (1) displays an appropriate copyright notice, and (2)
   2646      tells the user that there is no warranty for the work (except to
   2647      the extent that warranties are provided), that licensees may convey
   2648      the work under this License, and how to view a copy of this
   2649      License.  If the interface presents a list of user commands or
   2650      options, such as a menu, a prominent item in the list meets this
   2651      criterion.
   2652 
   2653   1. Source Code.
   2654 
   2655      The “source code” for a work means the preferred form of the work
   2656      for making modifications to it.  “Object code” means any non-source
   2657      form of a work.
   2658 
   2659      A “Standard Interface” means an interface that either is an
   2660      official standard defined by a recognized standards body, or, in
   2661      the case of interfaces specified for a particular programming
   2662      language, one that is widely used among developers working in that
   2663      language.
   2664 
   2665      The “System Libraries” of an executable work include anything,
   2666      other than the work as a whole, that (a) is included in the normal
   2667      form of packaging a Major Component, but which is not part of that
   2668      Major Component, and (b) serves only to enable use of the work with
   2669      that Major Component, or to implement a Standard Interface for
   2670      which an implementation is available to the public in source code
   2671      form.  A “Major Component”, in this context, means a major
   2672      essential component (kernel, window system, and so on) of the
   2673      specific operating system (if any) on which the executable work
   2674      runs, or a compiler used to produce the work, or an object code
   2675      interpreter used to run it.
   2676 
   2677      The “Corresponding Source” for a work in object code form means all
   2678      the source code needed to generate, install, and (for an executable
   2679      work) run the object code and to modify the work, including scripts
   2680      to control those activities.  However, it does not include the
   2681      work’s System Libraries, or general-purpose tools or generally
   2682      available free programs which are used unmodified in performing
   2683      those activities but which are not part of the work.  For example,
   2684      Corresponding Source includes interface definition files associated
   2685      with source files for the work, and the source code for shared
   2686      libraries and dynamically linked subprograms that the work is
   2687      specifically designed to require, such as by intimate data
   2688      communication or control flow between those subprograms and other
   2689      parts of the work.
   2690 
   2691      The Corresponding Source need not include anything that users can
   2692      regenerate automatically from other parts of the Corresponding
   2693      Source.
   2694 
   2695      The Corresponding Source for a work in source code form is that
   2696      same work.
   2697 
   2698   2. Basic Permissions.
   2699 
   2700      All rights granted under this License are granted for the term of
   2701      copyright on the Program, and are irrevocable provided the stated
   2702      conditions are met.  This License explicitly affirms your unlimited
   2703      permission to run the unmodified Program.  The output from running
   2704      a covered work is covered by this License only if the output, given
   2705      its content, constitutes a covered work.  This License acknowledges
   2706      your rights of fair use or other equivalent, as provided by
   2707      copyright law.
   2708 
   2709      You may make, run and propagate covered works that you do not
   2710      convey, without conditions so long as your license otherwise
   2711      remains in force.  You may convey covered works to others for the
   2712      sole purpose of having them make modifications exclusively for you,
   2713      or provide you with facilities for running those works, provided
   2714      that you comply with the terms of this License in conveying all
   2715      material for which you do not control copyright.  Those thus making
   2716      or running the covered works for you must do so exclusively on your
   2717      behalf, under your direction and control, on terms that prohibit
   2718      them from making any copies of your copyrighted material outside
   2719      their relationship with you.
   2720 
   2721      Conveying under any other circumstances is permitted solely under
   2722      the conditions stated below.  Sublicensing is not allowed; section
   2723      10 makes it unnecessary.
   2724 
   2725   3. Protecting Users’ Legal Rights From Anti-Circumvention Law.
   2726 
   2727      No covered work shall be deemed part of an effective technological
   2728      measure under any applicable law fulfilling obligations under
   2729      article 11 of the WIPO copyright treaty adopted on 20 December
   2730      1996, or similar laws prohibiting or restricting circumvention of
   2731      such measures.
   2732 
   2733      When you convey a covered work, you waive any legal power to forbid
   2734      circumvention of technological measures to the extent such
   2735      circumvention is effected by exercising rights under this License
   2736      with respect to the covered work, and you disclaim any intention to
   2737      limit operation or modification of the work as a means of
   2738      enforcing, against the work’s users, your or third parties’ legal
   2739      rights to forbid circumvention of technological measures.
   2740 
   2741   4. Conveying Verbatim Copies.
   2742 
   2743      You may convey verbatim copies of the Program’s source code as you
   2744      receive it, in any medium, provided that you conspicuously and
   2745      appropriately publish on each copy an appropriate copyright notice;
   2746      keep intact all notices stating that this License and any
   2747      non-permissive terms added in accord with section 7 apply to the
   2748      code; keep intact all notices of the absence of any warranty; and
   2749      give all recipients a copy of this License along with the Program.
   2750 
   2751      You may charge any price or no price for each copy that you convey,
   2752      and you may offer support or warranty protection for a fee.
   2753 
   2754   5. Conveying Modified Source Versions.
   2755 
   2756      You may convey a work based on the Program, or the modifications to
   2757      produce it from the Program, in the form of source code under the
   2758      terms of section 4, provided that you also meet all of these
   2759      conditions:
   2760 
   2761        a. The work must carry prominent notices stating that you
   2762           modified it, and giving a relevant date.
   2763 
   2764        b. The work must carry prominent notices stating that it is
   2765           released under this License and any conditions added under
   2766           section 7.  This requirement modifies the requirement in
   2767           section 4 to “keep intact all notices”.
   2768 
   2769        c. You must license the entire work, as a whole, under this
   2770           License to anyone who comes into possession of a copy.  This
   2771           License will therefore apply, along with any applicable
   2772           section 7 additional terms, to the whole of the work, and all
   2773           its parts, regardless of how they are packaged.  This License
   2774           gives no permission to license the work in any other way, but
   2775           it does not invalidate such permission if you have separately
   2776           received it.
   2777 
   2778        d. If the work has interactive user interfaces, each must display
   2779           Appropriate Legal Notices; however, if the Program has
   2780           interactive interfaces that do not display Appropriate Legal
   2781           Notices, your work need not make them do so.
   2782 
   2783      A compilation of a covered work with other separate and independent
   2784      works, which are not by their nature extensions of the covered
   2785      work, and which are not combined with it such as to form a larger
   2786      program, in or on a volume of a storage or distribution medium, is
   2787      called an “aggregate” if the compilation and its resulting
   2788      copyright are not used to limit the access or legal rights of the
   2789      compilation’s users beyond what the individual works permit.
   2790      Inclusion of a covered work in an aggregate does not cause this
   2791      License to apply to the other parts of the aggregate.
   2792 
   2793   6. Conveying Non-Source Forms.
   2794 
   2795      You may convey a covered work in object code form under the terms
   2796      of sections 4 and 5, provided that you also convey the
   2797      machine-readable Corresponding Source under the terms of this
   2798      License, in one of these ways:
   2799 
   2800        a. Convey the object code in, or embodied in, a physical product
   2801           (including a physical distribution medium), accompanied by the
   2802           Corresponding Source fixed on a durable physical medium
   2803           customarily used for software interchange.
   2804 
   2805        b. Convey the object code in, or embodied in, a physical product
   2806           (including a physical distribution medium), accompanied by a
   2807           written offer, valid for at least three years and valid for as
   2808           long as you offer spare parts or customer support for that
   2809           product model, to give anyone who possesses the object code
   2810           either (1) a copy of the Corresponding Source for all the
   2811           software in the product that is covered by this License, on a
   2812           durable physical medium customarily used for software
   2813           interchange, for a price no more than your reasonable cost of
   2814           physically performing this conveying of source, or (2) access
   2815           to copy the Corresponding Source from a network server at no
   2816           charge.
   2817 
   2818        c. Convey individual copies of the object code with a copy of the
   2819           written offer to provide the Corresponding Source.  This
   2820           alternative is allowed only occasionally and noncommercially,
   2821           and only if you received the object code with such an offer,
   2822           in accord with subsection 6b.
   2823 
   2824        d. Convey the object code by offering access from a designated
   2825           place (gratis or for a charge), and offer equivalent access to
   2826           the Corresponding Source in the same way through the same
   2827           place at no further charge.  You need not require recipients
   2828           to copy the Corresponding Source along with the object code.
   2829           If the place to copy the object code is a network server, the
   2830           Corresponding Source may be on a different server (operated by
   2831           you or a third party) that supports equivalent copying
   2832           facilities, provided you maintain clear directions next to the
   2833           object code saying where to find the Corresponding Source.
   2834           Regardless of what server hosts the Corresponding Source, you
   2835           remain obligated to ensure that it is available for as long as
   2836           needed to satisfy these requirements.
   2837 
   2838        e. Convey the object code using peer-to-peer transmission,
   2839           provided you inform other peers where the object code and
   2840           Corresponding Source of the work are being offered to the
   2841           general public at no charge under subsection 6d.
   2842 
   2843      A separable portion of the object code, whose source code is
   2844      excluded from the Corresponding Source as a System Library, need
   2845      not be included in conveying the object code work.
   2846 
   2847      A “User Product” is either (1) a “consumer product”, which means
   2848      any tangible personal property which is normally used for personal,
   2849      family, or household purposes, or (2) anything designed or sold for
   2850      incorporation into a dwelling.  In determining whether a product is
   2851      a consumer product, doubtful cases shall be resolved in favor of
   2852      coverage.  For a particular product received by a particular user,
   2853      “normally used” refers to a typical or common use of that class of
   2854      product, regardless of the status of the particular user or of the
   2855      way in which the particular user actually uses, or expects or is
   2856      expected to use, the product.  A product is a consumer product
   2857      regardless of whether the product has substantial commercial,
   2858      industrial or non-consumer uses, unless such uses represent the
   2859      only significant mode of use of the product.
   2860 
   2861      “Installation Information” for a User Product means any methods,
   2862      procedures, authorization keys, or other information required to
   2863      install and execute modified versions of a covered work in that
   2864      User Product from a modified version of its Corresponding Source.
   2865      The information must suffice to ensure that the continued
   2866      functioning of the modified object code is in no case prevented or
   2867      interfered with solely because modification has been made.
   2868 
   2869      If you convey an object code work under this section in, or with,
   2870      or specifically for use in, a User Product, and the conveying
   2871      occurs as part of a transaction in which the right of possession
   2872      and use of the User Product is transferred to the recipient in
   2873      perpetuity or for a fixed term (regardless of how the transaction
   2874      is characterized), the Corresponding Source conveyed under this
   2875      section must be accompanied by the Installation Information.  But
   2876      this requirement does not apply if neither you nor any third party
   2877      retains the ability to install modified object code on the User
   2878      Product (for example, the work has been installed in ROM).
   2879 
   2880      The requirement to provide Installation Information does not
   2881      include a requirement to continue to provide support service,
   2882      warranty, or updates for a work that has been modified or installed
   2883      by the recipient, or for the User Product in which it has been
   2884      modified or installed.  Access to a network may be denied when the
   2885      modification itself materially and adversely affects the operation
   2886      of the network or violates the rules and protocols for
   2887      communication across the network.
   2888 
   2889      Corresponding Source conveyed, and Installation Information
   2890      provided, in accord with this section must be in a format that is
   2891      publicly documented (and with an implementation available to the
   2892      public in source code form), and must require no special password
   2893      or key for unpacking, reading or copying.
   2894 
   2895   7. Additional Terms.
   2896 
   2897      “Additional permissions” are terms that supplement the terms of
   2898      this License by making exceptions from one or more of its
   2899      conditions.  Additional permissions that are applicable to the
   2900      entire Program shall be treated as though they were included in
   2901      this License, to the extent that they are valid under applicable
   2902      law.  If additional permissions apply only to part of the Program,
   2903      that part may be used separately under those permissions, but the
   2904      entire Program remains governed by this License without regard to
   2905      the additional permissions.
   2906 
   2907      When you convey a copy of a covered work, you may at your option
   2908      remove any additional permissions from that copy, or from any part
   2909      of it.  (Additional permissions may be written to require their own
   2910      removal in certain cases when you modify the work.)  You may place
   2911      additional permissions on material, added by you to a covered work,
   2912      for which you have or can give appropriate copyright permission.
   2913 
   2914      Notwithstanding any other provision of this License, for material
   2915      you add to a covered work, you may (if authorized by the copyright
   2916      holders of that material) supplement the terms of this License with
   2917      terms:
   2918 
   2919        a. Disclaiming warranty or limiting liability differently from
   2920           the terms of sections 15 and 16 of this License; or
   2921 
   2922        b. Requiring preservation of specified reasonable legal notices
   2923           or author attributions in that material or in the Appropriate
   2924           Legal Notices displayed by works containing it; or
   2925 
   2926        c. Prohibiting misrepresentation of the origin of that material,
   2927           or requiring that modified versions of such material be marked
   2928           in reasonable ways as different from the original version; or
   2929 
   2930        d. Limiting the use for publicity purposes of names of licensors
   2931           or authors of the material; or
   2932 
   2933        e. Declining to grant rights under trademark law for use of some
   2934           trade names, trademarks, or service marks; or
   2935 
   2936        f. Requiring indemnification of licensors and authors of that
   2937           material by anyone who conveys the material (or modified
   2938           versions of it) with contractual assumptions of liability to
   2939           the recipient, for any liability that these contractual
   2940           assumptions directly impose on those licensors and authors.
   2941 
   2942      All other non-permissive additional terms are considered “further
   2943      restrictions” within the meaning of section 10.  If the Program as
   2944      you received it, or any part of it, contains a notice stating that
   2945      it is governed by this License along with a term that is a further
   2946      restriction, you may remove that term.  If a license document
   2947      contains a further restriction but permits relicensing or conveying
   2948      under this License, you may add to a covered work material governed
   2949      by the terms of that license document, provided that the further
   2950      restriction does not survive such relicensing or conveying.
   2951 
   2952      If you add terms to a covered work in accord with this section, you
   2953      must place, in the relevant source files, a statement of the
   2954      additional terms that apply to those files, or a notice indicating
   2955      where to find the applicable terms.
   2956 
   2957      Additional terms, permissive or non-permissive, may be stated in
   2958      the form of a separately written license, or stated as exceptions;
   2959      the above requirements apply either way.
   2960 
   2961   8. Termination.
   2962 
   2963      You may not propagate or modify a covered work except as expressly
   2964      provided under this License.  Any attempt otherwise to propagate or
   2965      modify it is void, and will automatically terminate your rights
   2966      under this License (including any patent licenses granted under the
   2967      third paragraph of section 11).
   2968 
   2969      However, if you cease all violation of this License, then your
   2970      license from a particular copyright holder is reinstated (a)
   2971      provisionally, unless and until the copyright holder explicitly and
   2972      finally terminates your license, and (b) permanently, if the
   2973      copyright holder fails to notify you of the violation by some
   2974      reasonable means prior to 60 days after the cessation.
   2975 
   2976      Moreover, your license from a particular copyright holder is
   2977      reinstated permanently if the copyright holder notifies you of the
   2978      violation by some reasonable means, this is the first time you have
   2979      received notice of violation of this License (for any work) from
   2980      that copyright holder, and you cure the violation prior to 30 days
   2981      after your receipt of the notice.
   2982 
   2983      Termination of your rights under this section does not terminate
   2984      the licenses of parties who have received copies or rights from you
   2985      under this License.  If your rights have been terminated and not
   2986      permanently reinstated, you do not qualify to receive new licenses
   2987      for the same material under section 10.
   2988 
   2989   9. Acceptance Not Required for Having Copies.
   2990 
   2991      You are not required to accept this License in order to receive or
   2992      run a copy of the Program.  Ancillary propagation of a covered work
   2993      occurring solely as a consequence of using peer-to-peer
   2994      transmission to receive a copy likewise does not require
   2995      acceptance.  However, nothing other than this License grants you
   2996      permission to propagate or modify any covered work.  These actions
   2997      infringe copyright if you do not accept this License.  Therefore,
   2998      by modifying or propagating a covered work, you indicate your
   2999      acceptance of this License to do so.
   3000 
   3001   10. Automatic Licensing of Downstream Recipients.
   3002 
   3003      Each time you convey a covered work, the recipient automatically
   3004      receives a license from the original licensors, to run, modify and
   3005      propagate that work, subject to this License.  You are not
   3006      responsible for enforcing compliance by third parties with this
   3007      License.
   3008 
   3009      An “entity transaction” is a transaction transferring control of an
   3010      organization, or substantially all assets of one, or subdividing an
   3011      organization, or merging organizations.  If propagation of a
   3012      covered work results from an entity transaction, each party to that
   3013      transaction who receives a copy of the work also receives whatever
   3014      licenses to the work the party’s predecessor in interest had or
   3015      could give under the previous paragraph, plus a right to possession
   3016      of the Corresponding Source of the work from the predecessor in
   3017      interest, if the predecessor has it or can get it with reasonable
   3018      efforts.
   3019 
   3020      You may not impose any further restrictions on the exercise of the
   3021      rights granted or affirmed under this License.  For example, you
   3022      may not impose a license fee, royalty, or other charge for exercise
   3023      of rights granted under this License, and you may not initiate
   3024      litigation (including a cross-claim or counterclaim in a lawsuit)
   3025      alleging that any patent claim is infringed by making, using,
   3026      selling, offering for sale, or importing the Program or any portion
   3027      of it.
   3028 
   3029   11. Patents.
   3030 
   3031      A “contributor” is a copyright holder who authorizes use under this
   3032      License of the Program or a work on which the Program is based.
   3033      The work thus licensed is called the contributor’s “contributor
   3034      version”.
   3035 
   3036      A contributor’s “essential patent claims” are all patent claims
   3037      owned or controlled by the contributor, whether already acquired or
   3038      hereafter acquired, that would be infringed by some manner,
   3039      permitted by this License, of making, using, or selling its
   3040      contributor version, but do not include claims that would be
   3041      infringed only as a consequence of further modification of the
   3042      contributor version.  For purposes of this definition, “control”
   3043      includes the right to grant patent sublicenses in a manner
   3044      consistent with the requirements of this License.
   3045 
   3046      Each contributor grants you a non-exclusive, worldwide,
   3047      royalty-free patent license under the contributor’s essential
   3048      patent claims, to make, use, sell, offer for sale, import and
   3049      otherwise run, modify and propagate the contents of its contributor
   3050      version.
   3051 
   3052      In the following three paragraphs, a “patent license” is any
   3053      express agreement or commitment, however denominated, not to
   3054      enforce a patent (such as an express permission to practice a
   3055      patent or covenant not to sue for patent infringement).  To “grant”
   3056      such a patent license to a party means to make such an agreement or
   3057      commitment not to enforce a patent against the party.
   3058 
   3059      If you convey a covered work, knowingly relying on a patent
   3060      license, and the Corresponding Source of the work is not available
   3061      for anyone to copy, free of charge and under the terms of this
   3062      License, through a publicly available network server or other
   3063      readily accessible means, then you must either (1) cause the
   3064      Corresponding Source to be so available, or (2) arrange to deprive
   3065      yourself of the benefit of the patent license for this particular
   3066      work, or (3) arrange, in a manner consistent with the requirements
   3067      of this License, to extend the patent license to downstream
   3068      recipients.  “Knowingly relying” means you have actual knowledge
   3069      that, but for the patent license, your conveying the covered work
   3070      in a country, or your recipient’s use of the covered work in a
   3071      country, would infringe one or more identifiable patents in that
   3072      country that you have reason to believe are valid.
   3073 
   3074      If, pursuant to or in connection with a single transaction or
   3075      arrangement, you convey, or propagate by procuring conveyance of, a
   3076      covered work, and grant a patent license to some of the parties
   3077      receiving the covered work authorizing them to use, propagate,
   3078      modify or convey a specific copy of the covered work, then the
   3079      patent license you grant is automatically extended to all
   3080      recipients of the covered work and works based on it.
   3081 
   3082      A patent license is “discriminatory” if it does not include within
   3083      the scope of its coverage, prohibits the exercise of, or is
   3084      conditioned on the non-exercise of one or more of the rights that
   3085      are specifically granted under this License.  You may not convey a
   3086      covered work if you are a party to an arrangement with a third
   3087      party that is in the business of distributing software, under which
   3088      you make payment to the third party based on the extent of your
   3089      activity of conveying the work, and under which the third party
   3090      grants, to any of the parties who would receive the covered work
   3091      from you, a discriminatory patent license (a) in connection with
   3092      copies of the covered work conveyed by you (or copies made from
   3093      those copies), or (b) primarily for and in connection with specific
   3094      products or compilations that contain the covered work, unless you
   3095      entered into that arrangement, or that patent license was granted,
   3096      prior to 28 March 2007.
   3097 
   3098      Nothing in this License shall be construed as excluding or limiting
   3099      any implied license or other defenses to infringement that may
   3100      otherwise be available to you under applicable patent law.
   3101 
   3102   12. No Surrender of Others’ Freedom.
   3103 
   3104      If conditions are imposed on you (whether by court order, agreement
   3105      or otherwise) that contradict the conditions of this License, they
   3106      do not excuse you from the conditions of this License.  If you
   3107      cannot convey a covered work so as to satisfy simultaneously your
   3108      obligations under this License and any other pertinent obligations,
   3109      then as a consequence you may not convey it at all.  For example,
   3110      if you agree to terms that obligate you to collect a royalty for
   3111      further conveying from those to whom you convey the Program, the
   3112      only way you could satisfy both those terms and this License would
   3113      be to refrain entirely from conveying the Program.
   3114 
   3115   13. Use with the GNU Affero General Public License.
   3116 
   3117      Notwithstanding any other provision of this License, you have
   3118      permission to link or combine any covered work with a work licensed
   3119      under version 3 of the GNU Affero General Public License into a
   3120      single combined work, and to convey the resulting work.  The terms
   3121      of this License will continue to apply to the part which is the
   3122      covered work, but the special requirements of the GNU Affero
   3123      General Public License, section 13, concerning interaction through
   3124      a network will apply to the combination as such.
   3125 
   3126   14. Revised Versions of this License.
   3127 
   3128      The Free Software Foundation may publish revised and/or new
   3129      versions of the GNU General Public License from time to time.  Such
   3130      new versions will be similar in spirit to the present version, but
   3131      may differ in detail to address new problems or concerns.
   3132 
   3133      Each version is given a distinguishing version number.  If the
   3134      Program specifies that a certain numbered version of the GNU
   3135      General Public License “or any later version” applies to it, you
   3136      have the option of following the terms and conditions either of
   3137      that numbered version or of any later version published by the Free
   3138      Software Foundation.  If the Program does not specify a version
   3139      number of the GNU General Public License, you may choose any
   3140      version ever published by the Free Software Foundation.
   3141 
   3142      If the Program specifies that a proxy can decide which future
   3143      versions of the GNU General Public License can be used, that
   3144      proxy’s public statement of acceptance of a version permanently
   3145      authorizes you to choose that version for the Program.
   3146 
   3147      Later license versions may give you additional or different
   3148      permissions.  However, no additional obligations are imposed on any
   3149      author or copyright holder as a result of your choosing to follow a
   3150      later version.
   3151 
   3152   15. Disclaimer of Warranty.
   3153 
   3154      THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
   3155      APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE
   3156      COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS”
   3157      WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
   3158      INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
   3159      MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE
   3160      RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.
   3161      SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
   3162      NECESSARY SERVICING, REPAIR OR CORRECTION.
   3163 
   3164   16. Limitation of Liability.
   3165 
   3166      IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
   3167      WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES
   3168      AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR
   3169      DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
   3170      CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE
   3171      THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA
   3172      BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
   3173      PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
   3174      PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF
   3175      THE POSSIBILITY OF SUCH DAMAGES.
   3176 
   3177   17. Interpretation of Sections 15 and 16.
   3178 
   3179      If the disclaimer of warranty and limitation of liability provided
   3180      above cannot be given local legal effect according to their terms,
   3181      reviewing courts shall apply local law that most closely
   3182      approximates an absolute waiver of all civil liability in
   3183      connection with the Program, unless a warranty or assumption of
   3184      liability accompanies a copy of the Program in return for a fee.
   3185 
   3186 END OF TERMS AND CONDITIONS
   3187 ===========================
   3188 
   3189 How to Apply These Terms to Your New Programs
   3190 =============================================
   3191 
   3192 If you develop a new program, and you want it to be of the greatest
   3193 possible use to the public, the best way to achieve this is to make it
   3194 free software which everyone can redistribute and change under these
   3195 terms.
   3196 
   3197    To do so, attach the following notices to the program.  It is safest
   3198 to attach them to the start of each source file to most effectively
   3199 state the exclusion of warranty; and each file should have at least the
   3200 “copyright” line and a pointer to where the full notice is found.
   3201 
   3202      ONE LINE TO GIVE THE PROGRAM'S NAME AND A BRIEF IDEA OF WHAT IT DOES.
   3203      Copyright (C) YEAR NAME OF AUTHOR
   3204 
   3205      This program is free software: you can redistribute it and/or modify
   3206      it under the terms of the GNU General Public License as published by
   3207      the Free Software Foundation, either version 3 of the License, or (at
   3208      your option) any later version.
   3209 
   3210      This program is distributed in the hope that it will be useful, but
   3211      WITHOUT ANY WARRANTY; without even the implied warranty of
   3212      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   3213      General Public License for more details.
   3214 
   3215      You should have received a copy of the GNU General Public License
   3216      along with this program.  If not, see <https://www.gnu.org/licenses/>.
   3217 
   3218    Also add information on how to contact you by electronic and paper
   3219 mail.
   3220 
   3221    If the program does terminal interaction, make it output a short
   3222 notice like this when it starts in an interactive mode:
   3223 
   3224      PROGRAM Copyright (C) YEAR NAME OF AUTHOR
   3225      This program comes with ABSOLUTELY NO WARRANTY; for details type ‘show w’.
   3226      This is free software, and you are welcome to redistribute it
   3227      under certain conditions; type ‘show c’ for details.
   3228 
   3229    The hypothetical commands ‘show w’ and ‘show c’ should show the
   3230 appropriate parts of the General Public License.  Of course, your
   3231 program’s commands might be different; for a GUI interface, you would
   3232 use an “about box”.
   3233 
   3234    You should also get your employer (if you work as a programmer) or
   3235 school, if any, to sign a “copyright disclaimer” for the program, if
   3236 necessary.  For more information on this, and how to apply and follow
   3237 the GNU GPL, see <https://www.gnu.org/licenses/>.
   3238 
   3239    The GNU General Public License does not permit incorporating your
   3240 program into proprietary programs.  If your program is a subroutine
   3241 library, you may consider it more useful to permit linking proprietary
   3242 applications with the library.  If this is what you want to do, use the
   3243 GNU Lesser General Public License instead of this License.  But first,
   3244 please read <https://www.gnu.org/licenses/why-not-lgpl.html>.
   3245 
   3246 
   3247 
   3248 Tag Table:
   3249 Node: Top763
   3250 Node: Introduction2980
   3251 Ref: Some things that Transient can do3508
   3252 Ref: Complexity in CLI programs3861
   3253 Ref: Using Transient for composing interactive commands4462
   3254 Node: Usage6704
   3255 Node: Invoking Transients7072
   3256 Node: Aborting and Resuming Transients8151
   3257 Node: Common Suffix Commands10772
   3258 Node: Saving Values12608
   3259 Ref: Saving Values-Footnote-113979
   3260 Node: Using History14172
   3261 Node: Getting Help for Suffix Commands15746
   3262 Node: Enabling and Disabling Suffixes17124
   3263 Node: Other Commands20412
   3264 Node: Configuration21388
   3265 Ref: Essential Options21668
   3266 Ref: Accessibility Options25329
   3267 Ref: Auxiliary Options25652
   3268 Ref: Developer Options30615
   3269 Node: Modifying Existing Transients31863
   3270 Node: Defining New Commands36055
   3271 Node: Technical Introduction36418
   3272 Node: Defining Transients42119
   3273 Node: Binding Suffix and Infix Commands44586
   3274 Node: Group Specifications45444
   3275 Node: Suffix Specifications51972
   3276 Node: Defining Suffix and Infix Commands56185
   3277 Node: Using Infix Arguments59233
   3278 Node: Transient State62859
   3279 Ref: Pre-commands for Infixes67674
   3280 Ref: Pre-commands for Suffixes68194
   3281 Ref: Pre-commands for Non-Suffixes70648
   3282 Ref: Special Pre-Commands71784
   3283 Node: Classes and Methods72292
   3284 Node: Group Classes74476
   3285 Node: Group Methods76403
   3286 Node: Prefix Classes77656
   3287 Node: Suffix Classes78747
   3288 Node: Suffix Methods81834
   3289 Node: Suffix Value Methods82155
   3290 Node: Suffix Format Methods84913
   3291 Node: Prefix Slots86392
   3292 Ref: Internal Prefix Slots88527
   3293 Node: Suffix Slots89784
   3294 Ref: Slots of transient-suffix90152
   3295 Ref: Slots of transient-infix91289
   3296 Ref: Slots of transient-variable94585
   3297 Ref: Slots of transient-switches94687
   3298 Node: Predicate Slots95050
   3299 Node: FAQ96485
   3300 Ref: Can I control how the popup buffer is displayed?96614
   3301 Ref: How can I copy text from the popup buffer?96795
   3302 Ref: How can I autoload prefix and suffix commands?97289
   3303 Ref: How does Transient compare to prefix keys and universal arguments?97763
   3304 Ref: How does Transient compare to Magit-Popup and Hydra?98006
   3305 Ref: Why did some of the key bindings change?98200
   3306 Ref: Why does q not quit popups anymore?100553
   3307 Node: Keystroke Index101656
   3308 Node: Command and Function Index103521
   3309 Node: Variable Index110113
   3310 Node: Concept Index112523
   3311 Node: GNU General Public License115259
   3312 
   3313 End Tag Table
   3314 
   3315 
   3316 Local Variables:
   3317 coding: utf-8
   3318 End: