Re: [PATCH RFC] Emacs: Add address completion mechanism implemented in elisp
authorDavid Bremner <david@tethera.net>
Thu, 31 Jul 2014 23:44:27 +0000 (20:44 +2100)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 18:04:00 +0000 (10:04 -0800)
d2/50ee9b8b809a593bc0c617b865682e9a84daaf [new file with mode: 0644]

diff --git a/d2/50ee9b8b809a593bc0c617b865682e9a84daaf b/d2/50ee9b8b809a593bc0c617b865682e9a84daaf
new file mode 100644 (file)
index 0000000..f81638f
--- /dev/null
@@ -0,0 +1,102 @@
+Return-Path: <david@tethera.net>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id 8AEF1431FAF\r
+       for <notmuch@notmuchmail.org>; Thu, 31 Jul 2014 16:44:41 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+       autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id S7JXx92cAhGI for <notmuch@notmuchmail.org>;\r
+       Thu, 31 Jul 2014 16:44:34 -0700 (PDT)\r
+Received: from yantan.tethera.net (yantan.tethera.net [199.188.72.155])\r
+       (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
+       (No client certificate requested)\r
+       by olra.theworths.org (Postfix) with ESMTPS id 5B35B431FAE\r
+       for <notmuch@notmuchmail.org>; Thu, 31 Jul 2014 16:44:34 -0700 (PDT)\r
+Received: from remotemail by yantan.tethera.net with local (Exim 4.80)\r
+       (envelope-from <david@tethera.net>)\r
+       id 1XD01P-0002IE-Pj; Thu, 31 Jul 2014 20:44:31 -0300\r
+Received: (nullmailer pid 10461 invoked by uid 1000); Thu, 31 Jul 2014\r
+       23:44:27 -0000\r
+From: David Bremner <david@tethera.net>\r
+To: Michal Sojka <sojkam1@fel.cvut.cz>, notmuch@notmuchmail.org\r
+Subject: Re: [PATCH RFC] Emacs: Add address completion mechanism implemented\r
+       in elisp\r
+In-Reply-To: <1406653070-13174-1-git-send-email-sojkam1@fel.cvut.cz>\r
+References: <87bns8f6hi.fsf@steelpick.2x.cz>\r
+       <1406653070-13174-1-git-send-email-sojkam1@fel.cvut.cz>\r
+User-Agent: Notmuch/0.18.1+45~gf47eeac (http://notmuchmail.org) Emacs/24.3.1\r
+       (x86_64-pc-linux-gnu)\r
+Date: Thu, 31 Jul 2014 20:44:27 -0300\r
+Message-ID: <87r411f604.fsf@maritornes.cs.unb.ca>\r
+MIME-Version: 1.0\r
+Content-Type: text/plain\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Thu, 31 Jul 2014 23:44:41 -0000\r
+\r
+Michal Sojka <sojkam1@fel.cvut.cz> writes:\r
+\r
+> notmuch-company.el hooks itself into message-mode and uses\r
+> company-mode to offer the completion to the user. The file is put into\r
+> the contrib directory which means that the use has to install it\r
+> himself. This is because company-mode is not a part of Emacs and\r
+> bytecompiling notmuch-company.el fails due to used --quick option that\r
+> causes user installed packages to be ignored. \r
+\r
+what about for now just putting \r
+\r
+;; -*-no-byte-compile: t; -*-\r
+\r
+at the top of the file?  It seems usable uncompiled to me.\r
+\r
+Then somebody who really wants it compiled can figure out how to do the\r
+conditional compilation.\r
+\r
+> It would probably make sense to implement another completion frontend\r
+> based only on Emacs built-in functionality and integrate it with\r
+> notmuch-addresses.el.\r
+\r
+Agreed.\r
+\r
+> +  "`company-mode' completion back-end for `nevermore (nm)'."\r
+\r
+missed "nevermore" ;)\r
+\r
+\r
+>  \r
+> +(defun notmuch-flatten-thread-set (thread-set)\r
+> +  "Convert the result of 'notmuch show' to the plain list of messages."\r
+> +(defun notmuch-flatten-thread (thread)\r
+> +\r
+> +(defun notmuch-flatten-thread-node (thread-node)\r
+\r
+\r
+what about putting those functions in notmuch-query.el?\r
+\r
+\r
+> +(defun notmuch-async-harvest ()\r
+> +  "Collect possible addresses for completion. It queries the\r
+\r
+\r
+logically it seems like this might belong in notmuch-address.el,\r
+even if none of the functions in  in it currently use\r
+\r
+\r
+d\r