From: Eshel Yaron <me@eshelyaron.com>
To: emacs-devel@gnu.org
Cc: Dmitry Gutov <dmitry@gutov.dev>
Subject: Re: master 6b7ff60a5e7: Highlight the suffix in *Completions* buffer in 'basic' style too
Date: Thu, 13 Jun 2024 10:20:50 +0200 [thread overview]
Message-ID: <m15xud8d99.fsf@dazzs-mbp.kpn> (raw)
In-Reply-To: <20240612220700.A0F4DC1FB4C@vcs2.savannah.gnu.org> (Dmitry Gutov's message of "Wed, 12 Jun 2024 18:07:00 -0400 (EDT)")
Hi Dmitry,
Dmitry Gutov <dgutov@yandex.ru> writes:
> branch: master
> commit 6b7ff60a5e71c161a064e27509fe4fb95cf74ddd
> Author: Dmitry Gutov <dmitry@gutov.dev>
> Commit: Dmitry Gutov <dmitry@gutov.dev>
>
> Highlight the suffix in *Completions* buffer in 'basic' style too
>
> * lisp/minibuffer.el (completion-basic-all-completions):
> Make sure to highlight the suffix as well (bug#71419).
> ---
> lisp/minibuffer.el | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el
> index f62cb2566b2..144cda8cfdc 100644
> --- a/lisp/minibuffer.el
> +++ b/lisp/minibuffer.el
> @@ -3816,7 +3816,7 @@ Return the new suffix."
> 'point
> (substring afterpoint 0 (cdr bounds)))))
> (all (completion-pcm--all-completions prefix pattern table pred)))
> - (completion-hilit-commonality all point (car bounds))))
> + (completion-pcm--hilit-commonality pattern all)))
Note that unlike completion-hilit-commonality,
completion-pcm--hilit-commonality does not add the base size to the last
cdr of the result. So this breaks e.g. file name completion:
1. emacs -Q in emacs.git checkout root directory
2. C-x C-f lisp/fo TAB
3. *Completions* pops up with some completion candidates
4. M-<down>
The minibuffer should now contain something like
~/checkouts/emacs/lisp/foldout.el but after this commit it instead
contains just foldout.el.
Something like the following should fix this issue:
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el
index 144cda8cfdc..0a0b17b3850 100644
--- a/lisp/minibuffer.el
+++ b/lisp/minibuffer.el
@@ -3816,7 +3816,9 @@ completion-basic-all-completions
'point
(substring afterpoint 0 (cdr bounds)))))
(all (completion-pcm--all-completions prefix pattern table pred)))
- (completion-pcm--hilit-commonality pattern all)))
+ (when all
+ (nconc (completion-pcm--hilit-commonality pattern all)
+ (car bounds)))))
;;; Partial-completion-mode style completion.
next parent reply other threads:[~2024-06-13 8:20 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <171823002031.28307.18221225159709452537@vcs2.savannah.gnu.org>
[not found] ` <20240612220700.A0F4DC1FB4C@vcs2.savannah.gnu.org>
2024-06-13 8:20 ` Eshel Yaron [this message]
2024-06-13 14:11 ` master 6b7ff60a5e7: Highlight the suffix in *Completions* buffer in 'basic' style too Dmitry Gutov
2024-06-13 14:51 ` Eshel Yaron
2024-06-14 6:10 ` Juri Linkov
2024-06-14 7:35 ` Eshel Yaron
2024-06-14 16:41 ` Juri Linkov
2024-06-14 18:04 ` Eshel Yaron
2024-06-14 22:44 ` Dmitry Gutov
2024-06-30 16:29 ` Juri Linkov
2024-06-30 18:14 ` Eshel Yaron
2024-07-01 6:57 ` Juri Linkov
2024-07-01 8:58 ` Eshel Yaron
2024-07-01 16:29 ` Juri Linkov
2024-07-02 11:12 ` Eli Zaretskii
2024-07-02 12:17 ` Eshel Yaron
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m15xud8d99.fsf@dazzs-mbp.kpn \
--to=me@eshelyaron.com \
--cc=dmitry@gutov.dev \
--cc=emacs-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.