emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Daimrod <daimrod@gmail.com>
To: John Kitchin <jkitchin@andrew.cmu.edu>
Cc: "emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>
Subject: Re: org-contacts email completion by tags
Date: Tue, 17 Jun 2014 16:45:27 +0900	[thread overview]
Message-ID: <87ha3kugh4.fsf@tanger.home> (raw)
In-Reply-To: <8761kd7b1k.fsf@andrew.cmu.edu> (John Kitchin's message of "Fri, 06 Jun 2014 21:39:35 -0400")

John Kitchin <jkitchin@andrew.cmu.edu> writes:

Hi,

First, sorry for the late reply.

> Here is what I finally ended up with to allow completion with tag
> expressions. I did not figure out how to avoid overwriting an
> org-contacts function. I thought I could find the right hooks to use,
> but I could not figure it out. It is only a one line modification to the
> org-contacts function.

I've added a new hook `org-contacts-complete-functions' that you can use
to plug your function.

> This works for tag expressions, but I have not
> gotten it to work with properties.
>
> (defun org-contacts-complete-tags (start end tag-expression)
>   "insert emails from org-contacts that match the tags expression. For example:
> group-phd will match entries tagged with group but not with phd."
>   (let* ((completion-ignore-case org-contacts-completion-ignore-case)
> 	 (group-completion-p t))
>     (let ((result (mapconcat 'identity
> 		     (loop for contact in (org-contacts-db)
> 			   for contact-name = (car contact)
> 			   for email = (org-contacts-strip-link (car (org-contacts-split-property
> 								      (or
> 								       (cdr (assoc-string org-contacts-email-property
> 											  (caddr contact)))
> 								       ""))))
> 			   for tags = (cdr (assoc "TAGS" (nth 2 contact)))
> 			   for tags-list = (if tags
> 					       (split-string (substring (cdr (assoc "TAGS" (nth 2 contact))) 1 -1) ":")
> 					     '())
> 			   if (let ((todo-only nil))
> 				(eval (cdr (org-make-tags-matcher tag-expression))))
> 			   
> 			   collect (org-contacts-format-email contact-name email))
> 		     ",")))
>       (when (not (string= "" result))
> 	;; return (start end function)
> 	(lexical-let* ((to-return result))
> 	  (list start end
> 		(lambda (string pred &optional to-ignore) to-return)))))))
>

Thanks, but I'm refactoring org-contacts a bit, and I think I have found
a slightly better way to do that, but in the meantime you can use the
aforementioned hook for your function.

Best,

-- 
Daimrod/Greg

  reply	other threads:[~2014-06-17  7:45 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-04 23:16 org-contacts email completion by tags John Kitchin
2014-06-05  4:51 ` Daimrod
2014-06-05 11:33   ` John Kitchin
2014-06-05 11:50     ` Daimrod
2014-06-05 16:54       ` John Kitchin
2014-06-07  1:39         ` John Kitchin
2014-06-17  7:45           ` Daimrod [this message]
2014-07-13 10:48             ` Daimrod

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.orgmode.org/

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

  git send-email \
    --in-reply-to=87ha3kugh4.fsf@tanger.home \
    --to=daimrod@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=jkitchin@andrew.cmu.edu \
    /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 public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

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).