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 register 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!
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 !