Hey, is it currently possible to get ivy to highlight candidates with font-lock-face properties?
For example, I'd like to use ansi-color-apply on the output of some shell command and then pass the result to ivy-read:
(let* ((output (shell-command-to-string "ls -l --color=always ~/"))
(cands (mapcar #'ansi-color-apply (split-string output "\n"))))
(ivy-read "prompt -> " cands))
Thank you very much for this project by the way, it is absolutely fantastic.
Hey, is it currently possible to get ivy to highlight candidates with
font-lock-faceproperties?For example, I'd like to use
ansi-color-applyon the output of some shell command and then pass the result toivy-read:Thank you very much for this project by the way, it is absolutely fantastic.