unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] 0001-Add-icomplete-count-format
@ 2021-06-10  7:51 tumashu
  2021-06-10  9:53 ` 0001-Add-icomplete-count-format tumashu
  2021-06-10 16:23 ` [PATCH] 0001-Add-icomplete-count-format Philip Kaludercic
  0 siblings, 2 replies; 6+ messages in thread
From: tumashu @ 2021-06-10  7:51 UTC (permalink / raw)
  To: emacs-devel@gnu.org


[-- Attachment #1.1: Type: text/plain, Size: 1 bytes --]



[-- Attachment #1.2: Type: text/html, Size: 111 bytes --]

[-- Attachment #2: 0001-Add-icomplete-count-format.patch --]
[-- Type: application/octet-stream, Size: 1926 bytes --]

From 6074e1f4c5564e5d9e56041cc7db6fd7125571cb Mon Sep 17 00:00:00 2001
From: Feng Shu <tumashu@163.com>
Date: Thu, 10 Jun 2021 15:48:51 +0800
Subject: [PATCH] Add icomplete-count-format.

* lisp/icomplete.el (icomplete-count-format): New variable.
(icomplete-exhibit): Use icomplete-count-format.
---
 lisp/icomplete.el | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/lisp/icomplete.el b/lisp/icomplete.el
index 08b4ef2030..0881bade98 100644
--- a/lisp/icomplete.el
+++ b/lisp/icomplete.el
@@ -70,6 +70,10 @@ icomplete-hide-common-prefix
   :type 'boolean
   :version "24.4")
 
+(defcustom icomplete-count-format (cons "%-7s" "%s/%s ")
+  "Format string used for the candidate count."
+  :type '(choice (const nil) (cons string string)))
+
 (defvar icomplete-tidy-shadowed-file-names nil
   "If non-nil, automatically delete superfluous parts of file names.
 For example, if the user types ~/ after a long path name,
@@ -696,12 +700,13 @@ icomplete-exhibit
               (overlay-put
                icomplete-overlay 'before-string
                (and icomplete-scroll
-                    (let ((past (length icomplete--scrolled-past)))
-                      (format
-                       "%s/%s "
-                       (1+ past)
-                       (+ past
-                          (safe-length completion-all-sorted-completions))))))
+                    (format (car icomplete-count-format)
+                            (let ((past (length icomplete--scrolled-past)))
+                              (format
+                               (cdr icomplete-count-format)
+                               (1+ past)
+                               (+ past
+                                  (safe-length completion-all-sorted-completions)))))))
               (overlay-put icomplete-overlay 'after-string text))))))))
 
 (defun icomplete--affixate (md prospects)
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-06-17  8:02 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-10  7:51 [PATCH] 0001-Add-icomplete-count-format tumashu
2021-06-10  9:53 ` 0001-Add-icomplete-count-format tumashu
2021-06-10 16:23 ` [PATCH] 0001-Add-icomplete-count-format Philip Kaludercic
2021-06-11  0:09   ` tumashu
2021-06-17  3:24     ` tumashu
2021-06-17  8:02       ` Philip Kaludercic

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).