fix(vertico): adapt to targets changing to plists
embark targets changed internally to plists a while back. This didn't really seem to break anything but it's best to be up to date with the upstream representation.
This commit is contained in:
parent
595a5e665c
commit
dda5f558b2
1 changed files with 2 additions and 2 deletions
|
@ -214,8 +214,8 @@ targets."
|
||||||
(if (eq (caar targets) 'embark-become)
|
(if (eq (caar targets) 'embark-become)
|
||||||
"Become"
|
"Become"
|
||||||
(format "Act on %s '%s'%s"
|
(format "Act on %s '%s'%s"
|
||||||
(caar targets)
|
(plist-get (car targets) :type)
|
||||||
(embark--truncate-target (cdar targets))
|
(embark--truncate-target (plist-get (car targets) :target))
|
||||||
(if (cdr targets) "…" "")))
|
(if (cdr targets) "…" "")))
|
||||||
(if prefix (lookup-key keymap prefix) keymap)
|
(if prefix (lookup-key keymap prefix) keymap)
|
||||||
nil nil t))))
|
nil nil t))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue