bump: :completion vertico

iyefrat/all-the-icons-completion@9650041854 -> iyefrat/all-the-icons-completion@a0f34d68cc
minad/consult@dc6e455861 -> minad/consult@166e3b03c3
minad/marginalia@cb1d3ba604 -> minad/marginalia@fbd2f378f5
minad/vertico@0df75c0bbc -> minad/vertico@cd3c400aac
oantolin/embark@1492aefc00 -> oantolin/embark@8a0b80c6e6

Add --null to consult-ripgrep-args to comply with upstream changes to
filename detection.

Update +vertico-embark-which-key-indicator.

Fix #5494
Fix #5547
This commit is contained in:
Itai Y. Efrat 2021-10-10 10:46:14 +03:00
parent 68c5336972
commit 04e96c6faf
2 changed files with 13 additions and 9 deletions

View file

@ -44,7 +44,7 @@ orderless."
(concat "rg "
(if all-files "-uu ")
(unless recursive "--maxdepth 1 ")
"--line-buffered --color=never --max-columns=1000 "
"--null --line-buffered --color=never --max-columns=1000 "
"--path-separator / --smart-case --no-heading --line-number "
"--hidden -g !.git "
(mapconcat #'shell-quote-argument args " ")
@ -209,7 +209,7 @@ current target followed by an ellipsis if there are further
targets."
(lambda (&optional keymap targets prefix)
(if (null keymap)
(kill-buffer which-key--buffer)
(which-key--hide-popup-ignore-command)
(which-key--show-keymap
(if (eq (caar targets) 'embark-become)
"Become"
@ -217,7 +217,11 @@ targets."
(plist-get (car targets) :type)
(embark--truncate-target (plist-get (car targets) :target))
(if (cdr targets) "" "")))
(if prefix (lookup-key keymap prefix) keymap)
(if prefix
(pcase (lookup-key keymap prefix 'accept-default)
((and (pred keymapp) km) km)
(_ (key-binding prefix 'accept-default)))
keymap)
nil nil t))))
;;;###autoload

View file

@ -4,20 +4,20 @@
(package! vertico
:recipe (:host github :repo "minad/vertico"
:files ("*.el" "extensions/*.el"))
:pin "0df75c0bbc545b1bd008718b1af2e6c0df18fe74")
:pin "cd3c400aac2f5435080dc55d13c03c8886241365")
(package! orderless :pin "62f71c34baca0b7d0adeab4a1c07d85ffcee80d9")
(package! consult :pin "dc6e45586194cb30b3ba7614189718f3db1391c3")
(package! consult :pin "166e3b03c3de4f88bbfdeef7f52efac27642e2d3")
(when (featurep! :checkers syntax)
(package! consult-flycheck :pin "92b259e6a8ebe6439f67d3d7ffa44b7e64b76478"))
(package! embark :pin "1492aefc00abc3355bf04c2ed05f40ff2f523fcf")
(package! embark-consult :pin "1492aefc00abc3355bf04c2ed05f40ff2f523fcf")
(package! embark :pin "8a0b80c6e6ecdf6bb0df7dc496fe4d03197def65")
(package! embark-consult :pin "8a0b80c6e6ecdf6bb0df7dc496fe4d03197def65")
(package! marginalia :pin "cb1d3ba604dda17d8d44e7355ad76a1651830a30")
(package! marginalia :pin "fbd2f378f532b6d34d95d84b43edabd00e99a472")
(package! wgrep :pin "f9687c28bbc2e84f87a479b6ce04407bb97cfb23")
(when (featurep! +icons)
(package! all-the-icons-completion :pin "96500418541b7376cd0b3e4583b9509c0dd92b27"))
(package! all-the-icons-completion :pin "a0f34d68cc12330ab3992a7521f9caa1de3b8470"))