Just wanted to say thank you!
this post was submitted on 28 Nov 2023
1 points (100.0% liked)
Emacs
313 readers
2 users here now
A community for the timeless and infinitely powerful editor. Want to see what Emacs is capable of?!
Get Emacs
Rules
- Posts should be emacs related
- Be kind please
- Yes, we already know: Google results for "emacs" and "vi" link to each other. We good.
Emacs Resources
Emacs Tutorials
- Beginner’s Guide to Emacs
- Absolute Beginner's Guide to Emacs
- How to Learn Emacs: A Hand-drawn One-pager for Beginners
Useful Emacs configuration files and distributions
Quick pain-saver tip
founded 1 year ago
MODERATORS
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
- 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 !