mirror of
https://github.com/vale981/ement.el
synced 2025-03-04 17:01:39 -05:00
Change: (ement-room-transient) Show favourite/low-priority status
This commit is contained in:
parent
4504530042
commit
63269197ee
1 changed files with 9 additions and 1 deletions
|
@ -4165,7 +4165,15 @@ For use in `completion-at-point-functions'."
|
|||
("M-s o" "Occur search in room" ement-room-occur)
|
||||
("r t" "Set topic" ement-room-set-topic)
|
||||
("r f" "Set message format" ement-room-set-message-format)
|
||||
("r T" "Tag/untag room" ement-tag-room)]
|
||||
("r T" "Tag/untag room" ement-tag-room
|
||||
:description (lambda ()
|
||||
(format "Tag/untag room (%s/%s)"
|
||||
(propertize "Fav"
|
||||
'face (if (ement--room-tagged-p "m.favourite" ement-room)
|
||||
'transient-value 'transient-inactive-value))
|
||||
(propertize "Low-prio"
|
||||
'face (if (ement--room-tagged-p "m.lowpriority" ement-room)
|
||||
'transient-value 'transient-inactive-value)))))]
|
||||
["Room membership"
|
||||
("R c" "Create room" ement-create-room)
|
||||
("R j" "Join room" ement-join-room)
|
||||
|
|
Loading…
Add table
Reference in a new issue