all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Dmitry Gutov <dgutov@yandex.ru>
To: Lars Ingebrigtsen <larsi@gnus.org>
Cc: 22324@debbugs.gnu.org
Subject: bug#22324: 25.0.50; completion-category-defaults style doesn't override completion-styles (gets prepended instead)
Date: Tue, 25 Jan 2022 04:27:00 +0200	[thread overview]
Message-ID: <43725c9f-1f0a-fb43-82a2-3f284791fdf5@yandex.ru> (raw)
In-Reply-To: <87ilu94gac.fsf@gnus.org>

On 24.01.2022 11:46, Lars Ingebrigtsen wrote:
> Dmitry Gutov <dgutov@yandex.ru> writes:
> 
>> So the fix I had in mind looks like:
>>
>> diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el
>> index d58c23af8f..0aee55f33c 100644
>> --- a/lisp/minibuffer.el
>> +++ b/lisp/minibuffer.el
>> @@ -1043,7 +1043,7 @@ completion--styles
>>     (let* ((cat (completion-metadata-get metadata 'category))
>>            (over (completion--category-override cat 'styles)))
>>       (if over
>> -        (delete-dups (append (cdr over) (copy-sequence completion-styles)))
>> +        (cdr over)
>>          completion-styles)))
> 
> Oh, I see.  Hm...  that would change the behaviour for those that depend
> on this working the old way.

My theory is that this has never been reported because people never 
really notice the distinction in practice since if the completions 
styles are customized, that's usually done in favor of more lax ones.

So appending the default styles at the end doesn't affect the behavior 
in 99% of the cases. But it does add some CPU usage/latency in the "no 
matches" case, because that's the only case when the failover happens.

There might be a few users out there, of course, who rely on the current 
behavior, but I'm not sure what their use cases would be, and there 
can't be many people like that either because the completion styles 
stuff is fairly obscure. People have been exploring alternative 
front-ends recently that plug into CAPF, but 
completion-category-overrides is probably not a popular variable to 
customize still.

> Perhaps it'd make more sense to add a new variable to allow real overrides?

I don't know. What would it be called? 
completion-category-overrides-for-real-now?

Given that the only times people are likely to notice the distinction 
are some odd edge cases (and the extra lag is not so big or obvious), 
there will be even fewer occasions for people to learn about and 
customize the new var.

Unless we obsolete the previous one, which would be a fair approach, if 
we knew that it actually has a fair amount of users who need to migrate.





  reply	other threads:[~2022-01-25  2:27 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-07 20:27 bug#22324: 25.0.50; completion-category-defaults style doesn't override completion-styles (gets prepended instead) Dmitry Gutov
2016-01-08 12:17 ` Eli Zaretskii
2016-01-08 12:21   ` Dmitry Gutov
2016-01-08 12:26     ` Eli Zaretskii
2016-01-08 12:30       ` Dmitry Gutov
2016-01-08 15:31         ` Eli Zaretskii
2021-12-02  9:10         ` Lars Ingebrigtsen
2021-12-02  9:45           ` Eli Zaretskii
2021-12-06  1:16           ` Dmitry Gutov
2021-12-06  2:25             ` Lars Ingebrigtsen
2021-12-07  1:35               ` Dmitry Gutov
2021-12-07 20:28                 ` Lars Ingebrigtsen
2021-12-07 22:46                   ` Dmitry Gutov
2021-12-09  1:09                     ` Lars Ingebrigtsen
2022-01-21 13:46                       ` Lars Ingebrigtsen
2022-01-24  2:03                         ` Dmitry Gutov
2022-01-24  9:46                           ` Lars Ingebrigtsen
2022-01-25  2:27                             ` Dmitry Gutov [this message]
2022-01-25 12:19                               ` Lars Ingebrigtsen
2022-01-26  1:43                                 ` Dmitry Gutov
2022-01-26  2:31                                   ` Daniel Mendler
2022-01-26 13:36                                     ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-01-26 13:49                                       ` Daniel Mendler
2022-01-26 17:19                                         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-01-26 18:59                                           ` Daniel Mendler
2022-01-26 22:57                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-01-26 23:32                                               ` Daniel Mendler
2022-01-27  6:52                                                 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-01-28  2:35                                             ` Dmitry Gutov
2022-01-28 11:54                                               ` Daniel Mendler
2022-01-28 16:56                                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-01-28 22:06                                                 ` Dmitry Gutov
2022-01-28 23:18                                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-01-29  1:57                                                     ` Dmitry Gutov
2022-01-28  2:37                                       ` Dmitry Gutov
2022-01-28 16:59                                         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-01-28 21:23                                           ` Dmitry Gutov
2022-01-28  2:39                                     ` Dmitry Gutov

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=43725c9f-1f0a-fb43-82a2-3f284791fdf5@yandex.ru \
    --to=dgutov@yandex.ru \
    --cc=22324@debbugs.gnu.org \
    --cc=larsi@gnus.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.