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

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

[elpa] externals/consult 26977a721d: Rename function consult--abbreviate


From: ELPA Syncer
Subject: [elpa] externals/consult 26977a721d: Rename function consult--abbreviate-file to consult--left-truncate-file
Date: Mon, 13 Mar 2023 21:57:33 -0400 (EDT)

branch: externals/consult
commit 26977a721dc97df8985c72203c80048517a64c3b
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    Rename function consult--abbreviate-file to consult--left-truncate-file
---
 consult.el | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/consult.el b/consult.el
index 667106e14e..856b6bde4d 100644
--- a/consult.el
+++ b/consult.el
@@ -721,7 +721,7 @@ The line beginning/ending BEG/END is bound in BODY."
                             (kill-local-variable ',(cdr x))))
                        local)))))))
 
-(defun consult--abbreviate-file (file)
+(defun consult--left-truncate-file (file)
   "Return abbreviated file name of FILE for use in `completing-read' prompt."
   (save-match-data
     (let ((afile (abbreviate-file-name file)))
@@ -772,11 +772,11 @@ asked for the directories or files to search via
     (list
      (format "%s (%s): " prompt
              (pcase paths
-               (`(,p) (consult--abbreviate-file p))
+               (`(,p) (consult--left-truncate-file p))
                (`(,p . ,_)
-                (format "%d paths, %s, …" (length paths) 
(consult--abbreviate-file p)))
+                (format "%d paths, %s, …" (length paths) 
(consult--left-truncate-file p)))
                ((guard (equal edir pdir)) (concat "Project " 
(consult--project-name pdir)))
-               (_ (consult--abbreviate-file edir))))
+               (_ (consult--left-truncate-file edir))))
      (or paths '("."))
      edir)))
 
@@ -4320,7 +4320,7 @@ QUERY is passed to `consult--buffer-query'."
                   (cond
                    ((and ndir (eq dir 'project))
                     (format ", Project %s" (consult--project-name ndir)))
-                   (ndir (concat  ", " (consult--abbreviate-file ndir)))
+                   (ndir (concat  ", " (consult--left-truncate-file ndir)))
                    (t "")))
           buffers)))
 



reply via email to

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