emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/vertico feebaba 1/2: vertico-quick: Ensure that quick k


From: ELPA Syncer
Subject: [elpa] externals/vertico feebaba 1/2: vertico-quick: Ensure that quick key space is not trimmed
Date: Sat, 10 Jul 2021 12:57:20 -0400 (EDT)

branch: externals/vertico
commit feebabaae3ddb27719bdca903ab76e0138dcb8cd
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    vertico-quick: Ensure that quick key space is not trimmed
---
 extensions/vertico-quick.el | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/extensions/vertico-quick.el b/extensions/vertico-quick.el
index a179f5a..e237d02 100644
--- a/extensions/vertico-quick.el
+++ b/extensions/vertico-quick.el
@@ -64,7 +64,9 @@
   (let* ((fst (length vertico-quick1))
          (snd (length vertico-quick2))
          (len (+ fst snd))
-         (idx (- index start)))
+         (idx (- index start))
+         ;; Ensure that space is not trimmed by `vertico-flat-mode'
+         (sp (propertize "_" 'display `(space :width 1))))
     (funcall orig cand
              (concat
               (if (>= idx fst)
@@ -73,16 +75,16 @@
                     (push (cons (+ (lsh first 16) second) index) 
vertico-quick--list)
                     (cond
                      ((eq first vertico-quick--first)
-                      (concat " " (propertize (char-to-string second) 'face 
'vertico-quick1)))
+                      (concat sp (propertize (char-to-string second) 'face 
'vertico-quick1)))
                      (vertico-quick--first
-                      "   ")
+                      (concat sp sp))
                      (t
                       (concat (propertize (char-to-string first) 'face 
'vertico-quick1)
                               (propertize (char-to-string second) 'face 
'vertico-quick2)))))
                 (let ((first (elt vertico-quick1 (mod idx fst))))
                   (push (cons first index) vertico-quick--list)
                   (if vertico-quick--first
-                      "  "
+                      (concat sp " ")
                     (concat (propertize (char-to-string first) 'face 
'vertico-quick1) " "))))
               (make-string (max 1 (- (length prefix) 2)) ?\s))
              suffix index start)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]