Org-block face overlaps vertico-current face #1075
-
Is there any way to make the vertico-current face to overlap the org-block face? like how it works in swiper: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The face marking the current candidate is appended, see https://github.com/minad/vertico/blob/d70fdeb67be9ecc88c438039eefa9ef0e2104005/vertico.el#L507. I don't recall the exact reasons for appending, but I guess it led to fewer problems. You could try prepending and check if it works better for you. The alternative would be a more complex face merging mechanism, which is used afaik by Ivy/Swiper, where color blending is used. Such a mechanism is out of scope of my packages, since it would interfere with the colors chosen by the theme. |
Beta Was this translation helpful? Give feedback.
The face marking the current candidate is appended, see https://github.com/minad/vertico/blob/d70fdeb67be9ecc88c438039eefa9ef0e2104005/vertico.el#L507. I don't recall the exact reasons for appending, but I guess it led to fewer problems. You could try prepending and check if it works better for you. The alternative would be a more complex face merging mechanism, which is used afaik by Ivy/Swiper, where color blending is used. Such a mechanism is out of scope of my packages, since it would interfere with the colors chosen by the theme.