unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
To: "help-gnu-emacs\@gnu.org" <help-gnu-emacs@gnu.org>
Subject: Re: ordering candidates when using completion-at-point-functions
Date: Thu, 04 Jul 2013 08:02:08 +0300	[thread overview]
Message-ID: <87haga9aun.fsf@djcbsoftware.nl> (raw)
In-Reply-To: <jwvzju3upxy.fsf-monnier+emacs@gnu.org>

Hi Stefan,

On Thu, Jul 04 2013, monnier@IRO.UMontreal.CA wrote:

>> Instead, I would like to deliver the candidates in order of frequency; I
>
> What do you mean by "deliver"?

Well, I mean the order in which the candidates are presented in the
*Completions* buffers, as well as the order in which in can cycle
through them.

>> (An alternative might be to use a display-sort-function; it seems the
>
> Using display-sort-function sounds about right, yes.

>> current org-contacts[2] does something like that; but this seems /very/
>> complicated solution, which is hopefully not necessary for my modest
>> needs...)
>
> Which part do you find complicated?  We can probably provide some helper
> function to make it simpler.

So, boiled down to the essentials, I have something like this for my
message-composition buffer:

----
;; already sorted
(setq candidates'("foo1@example.com" "fnorb2@example.com"
		   "cuux3@example.com" "bar4example.com"))

(defun my-completion-function (&optional start)
  (let ((end (point))
	 (start (or start
		  (save-excursion
		    (re-search-backward "\\(\\`\\|[\n:,]\\)[ \t]*")
		    (goto-char (match-end 0))
		    (point)))))
    (list start (point) candidates)))
 
(add-to-list 'completion-at-point-functions 'my-completion-function)
---

So, completing after e.g. "To: ", I get:

----
Possible completions are:
bar4@example.com            cuux2@example.com
fnorb3@example.com          foo1@example.com
----

That is, the results are ordered alphabetically, rather than the 1-2-3-4
order I would like, as in my already-sorted list.

So, my question is how I can influence the sorting order -- either by
telling the completion machinery to not try to sort my candidates, or,
if that's not possible, to provide a display-sort-function and/or
cycle-sort-function.

I tried to write a completion function as per
   https://www.gnu.org/software/emacs/manual/html_node/elisp/Programmed-Completion.html
(and org-contacts, `org-contacts-make-collection-prefix'), but that
seems quite a bit of complexity, just to set the sort-functions to
identity. Maybe I'm missing something obvious -- or would that be the
right way to go forward anyway?

Kind regards,
Dirk.

-- 
Dirk-Jan C. Binnema                  Helsinki, Finland
e:djcb@djcbsoftware.nl           w:www.djcbsoftware.nl
pgp: D09C E664 897D 7D39 5047 A178 E96A C7A1 017D DA3C



  reply	other threads:[~2013-07-04  5:02 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-29  9:43 ordering candidates when using completion-at-point-functions Dirk-Jan C. Binnema
2013-07-04  0:32 ` Stefan Monnier
2013-07-04  5:02   ` Dirk-Jan C. Binnema [this message]
2013-07-04  5:23     ` Jambunathan K

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

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87haga9aun.fsf@djcbsoftware.nl \
    --to=djcb@djcbsoftware.nl \
    --cc=help-gnu-emacs@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.
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).