diff options
| -rw-r--r-- | corfu.el | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -605,7 +605,10 @@ completion began less than that number of seconds ago." (concat prefix (make-string (- pw (string-width prefix)) ?\s) cand - (unless (eq suffix "") (make-string (- cw (string-width cand)) ?\s)) + (unless (eq suffix "") + (make-string (+ (- cw (string-width cand)) + (- sw (string-width suffix))) + ?\s)) suffix) width)) cands))) |
