diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2024-12-19 09:23:38 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2024-12-19 09:23:38 +0100 |
| commit | 667ce2b2874d9d8d5cc281e998cf1d18ea3827b9 (patch) | |
| tree | 21380aca2c657473870762a673769a0ef9ff58d0 /docs/transient.org | |
| parent | 76647bfb9b6e3306fcfe7a1bc7cda60223c732f2 (diff) | |
Use transient-default-value in transient-init-value(suffix)
Diffstat (limited to 'docs/transient.org')
| -rw-r--r-- | docs/transient.org | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/docs/transient.org b/docs/transient.org index 6dce552..b5fe66f 100644 --- a/docs/transient.org +++ b/docs/transient.org @@ -1957,14 +1957,26 @@ functions use ~describe-function~. - Function: transient-init-value obj :: This generic function sets the initial value of the object {{{var(OBJ)}}}. + Methods exist for both prefix and suffix objects. + + For ~transient-argument~ objects this function handles setting the + value by itself. + + For other ~transient-suffix~ objects (including ~transient-infix~ + objects), this calls ~transient-default-value~ and uses the value + returned by that, unless it is the special value ~eieio--unbound~, + which indicates that there is no default value. Since that is what + the default method for ~transient-suffix~ objects does, both of these + functions effectively are noops for these classes. + + If you implement a class that derives from ~transient-infix~ directly, + then you must implement a dedicated method for this function and/or + ~transient-default-value~. - This function is called for all suffix commands, but unless a - concrete method is implemented this falls through to the default - implementation, which is a noop. In other words this usually - only does something for infix commands, but note that this is - not implemented for the abstract class ~transient-infix~, so if - your class derives from that directly, then you must implement - a method. +- Function: transient-default-value obj :: + + This generic function returns the default value of the object {{{var(OBJ)}}}. + Methods exist for both prefix and suffix objects. - Function: transient-infix-read obj :: @@ -2590,7 +2602,7 @@ General Public License for more details. # LocalWords: Magit's Makefile OBJ OBJ's Pre alist arglist # LocalWords: args autoloaded boolean booleans customizable docstring # LocalWords: eval featurep infixes init isearch keymap keymaps loc -# LocalWords: magit manpage minibuffer monospaced ness nilly noop +# LocalWords: magit manpage minibuffer monospaced ness nilly noop noops # LocalWords: plist pre prev rebase redisplay src subclass subclasses # LocalWords: subcommands subprocess superclass tooltip termcap utils |
