this post was submitted on 28 Nov 2023
1 points (100.0% liked)

Emacs

330 readers
1 users here now

A community for the timeless and infinitely powerful editor. Want to see what Emacs is capable of?!

Get Emacs

Rules

  1. Posts should be emacs related
  2. Be kind please
  3. Yes, we already know: Google results for "emacs" and "vi" link to each other. We good.

Emacs Resources

Emacs Tutorials

Useful Emacs configuration files and distributions

Quick pain-saver tip

founded 2 years ago
MODERATORS
 

I am happy to announce the release of Transient version 0.5.0.

More information can be found in a blog post.

Please consider supporting my work on Magit, Transient and many other Emacs packages and projects.

top 9 comments
sorted by: hot top controversial new old
[–] [email protected] 1 points 1 year ago

Just wanted to say thank you!

[–] [email protected] 1 points 1 year ago (1 children)

I've been learning transient basics to improve velocity at work. A bit hard to swallow at first but very nice. Thanks

[–] [email protected] 1 points 1 year ago

You are welcome!

[–] [email protected] 1 points 1 year ago (1 children)

tc;du it’s a library to recreate magit’s rather nice context sensitive menu system for other things

[–] [email protected] 1 points 1 year ago

For those like me who had trouble expanding the abbreviation: Too complicated; didn't understand

[–] [email protected] 1 points 1 year ago
  • Updates Magit and Transient
  • Plays with C-x a in Magit's menus
  • Very nice! I love that it highlights the changes. Thanks!
[–] [email protected] 1 points 1 year ago (1 children)

Hope for some examples for new class transient-information !

[–] [email protected] 1 points 1 year ago (1 children)

Here you go:

(transient-define-prefix demo ()
  [(:info "boring" :face shadow)
   (:info (lambda () (format "Major-mode: %s" major-mode)))
   ("x" transient-echo-arguments)])
(keymap-global-set "" #'demo)
[–] [email protected] 1 points 1 year ago

u/tarsius thanks for your example !