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.
You must log in or # to comment.
I’ve been learning transient basics to improve velocity at work. A bit hard to swallow at first but very nice. Thanks
You are welcome!
tc;du it’s a library to recreate magit’s rather nice context sensitive menu system for other things
For those like me who had trouble expanding the abbreviation: Too complicated; didn’t understand
Just wanted to say thank you!
- Updates Magit and Transient
- Plays with
C-x a
in Magit’s menus - Very nice! I love that it highlights the changes. Thanks!
Hope for some examples for new class transient-information !
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)
u/tarsius thanks for your example !