branch: externals/mct
commit 5c7643068b859af03da81f70e3c408b83ac5cbc6
Author: Protesilaos Stavrou <[email protected]>
Commit: Protesilaos Stavrou <[email protected]>

    Set mct-highlight-candidate :extend to nil
    
    This is because the last candidate gets a shorter highlight. Probably
    that means that there is no newline there. I will need to check. But
    even with :extend nil we get decent results, as the highlight covers
    the annotations as well, which is what I want.
---
 mct.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mct.el b/mct.el
index 5799627580..d0e3781d15 100644
--- a/mct.el
+++ b/mct.el
@@ -369,7 +369,7 @@ Do it in accordance with the user option 
`mct-sort-by-command-or-category'."
 ;;;; Basics of intersection between minibuffer and Completions buffer
 
 (defface mct-highlight-candidate
-  '((t :inherit highlight :extend t))
+  '((t :inherit highlight :extend nil))
   "Face for current candidate in the Completions buffer."
   :group 'mct)
 

Reply via email to