[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/corfu a0ac2861e9 3/8: Suffixes are always prefixed with
From: |
ELPA Syncer |
Subject: |
[elpa] externals/corfu a0ac2861e9 3/8: Suffixes are always prefixed with space |
Date: |
Fri, 1 Nov 2024 12:58:24 -0400 (EDT) |
branch: externals/corfu
commit a0ac2861e9c90c9faff1db56c3f3a5afeaba7298
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>
Suffixes are always prefixed with space
---
corfu.el | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/corfu.el b/corfu.el
index 976a88e152..4b61b2aea6 100644
--- a/corfu.el
+++ b/corfu.el
@@ -746,9 +746,10 @@ FRAME is the existing frame."
(concat
prefix (make-string (- pw (string-width prefix)) ?\s)
cand
- (make-string (max 1 (- width pw (string-width cand)
- (string-width suffix)))
- ?\s)
+ (when (> sw 0)
+ (make-string (max 0 (- width pw (string-width cand)
+ (string-width suffix)))
+ ?\s))
suffix)
width)))))
- [elpa] externals/corfu updated (16d5aef839 -> 2b81c26dd7), ELPA Syncer, 2024/11/01
- [elpa] externals/corfu 0afd1f7266 6/8: Force fringe update, ELPA Syncer, 2024/11/01
- [elpa] externals/corfu e7a22ac6d6 4/8: Use fringe for the scroll bar, ELPA Syncer, 2024/11/01
- [elpa] externals/corfu a0ac2861e9 3/8: Suffixes are always prefixed with space,
ELPA Syncer <=
- [elpa] externals/corfu 38acda3546 5/8: Ensure right-margin-width >= bar-width, ELPA Syncer, 2024/11/01
- [elpa] externals/corfu d20892abbc 2/8: format-candidates: ensure suffix is right-aligned when possible, ELPA Syncer, 2024/11/01
- [elpa] externals/corfu 090299074e 1/8: Use :extend=t for corfu-current, Simplify, ELPA Syncer, 2024/11/01
- [elpa] externals/corfu 2b81c26dd7 8/8: Fix corfu--popup-show: curr can be nil, ELPA Syncer, 2024/11/01
- [elpa] externals/corfu 1ad0336693 7/8: Update changelog, ELPA Syncer, 2024/11/01