From: Daniel Mendler <mail@daniel-mendler.de>
To: Juri Linkov <juri@linkov.net>
Cc: 68214@debbugs.gnu.org
Subject: bug#68214: Completion sorting customization by category
Date: Fri, 05 Jan 2024 09:33:15 +0100 [thread overview]
Message-ID: <871qawrxh0.fsf@daniel-mendler.de> (raw)
In-Reply-To: <86sf3cjj6o.fsf@mail.linkov.net> (Juri Linkov's message of "Fri, 05 Jan 2024 09:59:03 +0200")
Juri Linkov <juri@linkov.net> writes:
>>>>> This function could be used to look up the other meta data
>>>>> functions too, `display-sort-function`, `annotation-function`,
>>>>> `affixation-function`, `group-function`, etc.
>>>>
>>>> All these meta data functions could be added later to
>>>> completion-category-overrides after pushing the current patch.
>>>
>>> Makes sense, the `display-sort-function' is a good start. I suggest to
>>> at least add the `cycle-sort-function' too. The cycle threshold can be
>>> customized too.
>>
>> Looks like the cycle threshold is already supported,
>> so I'll add the other meta data.
>
> This looks like a complete patch, but it's not completely tested yet:
If we are going with a solution which supports customizing arbitrary
metadata based on category, we could also adjust
`completion-metadata-get' and avoid the introduction of a separate
function `completion-metadata-override-get'. This will result in a
smaller and simpler code change overall.
(defun completion-metadata-get (metadata prop)
"Get PROP from completion METADATA.
If the metadata specifies a completion category, the variables
`completion-category-overrides' and
`completion-category-defaults' take precedence."
(if-let (((not (eq prop 'category)))
(cat (alist-get 'category metadata))
(over (completion--category-override cat prop)))
(cdr over)
(alist-get prop metadata)))
next prev parent reply other threads:[~2024-01-05 8:33 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-02 17:07 bug#68214: Completion sorting customization by category Juri Linkov
2024-01-03 7:20 ` Daniel Mendler
2024-01-03 16:07 ` Juri Linkov
2024-01-03 17:12 ` Daniel Mendler
2024-01-04 17:21 ` Juri Linkov
2024-01-05 7:59 ` Juri Linkov
2024-01-05 8:33 ` Daniel Mendler [this message]
2024-01-06 17:33 ` Juri Linkov
2024-01-06 17:59 ` Daniel Mendler via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-01-07 18:05 ` Juri Linkov
2024-01-07 18:37 ` Daniel Mendler via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-01-09 17:59 ` Juri Linkov
2024-01-09 18:14 ` Juri Linkov
2024-01-09 18:31 ` Daniel Mendler via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-01-10 7:35 ` Juri Linkov
2024-01-10 8:53 ` Daniel Mendler via Bug reports for GNU Emacs, the Swiss army knife of text editors
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=871qawrxh0.fsf@daniel-mendler.de \
--to=mail@daniel-mendler.de \
--cc=68214@debbugs.gnu.org \
--cc=juri@linkov.net \
/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.