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

Emacs

368 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
[–] ieoa@alien.top 1 points 2 years ago

Just wanted to say thank you!

[–] agumonkey@alien.top 1 points 2 years 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

[–] tarsius_@alien.top 1 points 2 years ago

You are welcome!

[–] sleekelite@alien.top 1 points 2 years ago (1 children)

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

[–] flylikeabanana@alien.top 1 points 2 years ago

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

[–] 7890yuiop@alien.top 1 points 2 years ago
  • Updates Magit and Transient
  • Plays with C-x a in Magit's menus
  • Very nice! I love that it highlights the changes. Thanks!
[–] littlesisterrun@alien.top 1 points 2 years ago (1 children)

Hope for some examples for new class transient-information !

[–] tarsius_@alien.top 1 points 2 years 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)
[–] littlesisterrun@alien.top 1 points 2 years ago

u/tarsius thanks for your example !