[PATCH v4 0/3] Emacs: Address completion implemented in elisp
authorMichal Sojka <sojkam1@fel.cvut.cz>
Fri, 19 Sep 2014 18:16:39 +0000 (20:16 +0200)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 18:04:35 +0000 (10:04 -0800)
2f/8a16c48535ed6e5f164a12d25d0bd29ffa368d [new file with mode: 0644]

diff --git a/2f/8a16c48535ed6e5f164a12d25d0bd29ffa368d b/2f/8a16c48535ed6e5f164a12d25d0bd29ffa368d
new file mode 100644 (file)
index 0000000..ac19305
--- /dev/null
@@ -0,0 +1,82 @@
+Return-Path: <sojkam1@fel.cvut.cz>\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 4AC7D431FC7\r
+       for <notmuch@notmuchmail.org>; Fri, 19 Sep 2014 11:17:12 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: -2.3\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=-2.3 tagged_above=-999 required=5\r
+       tests=[RCVD_IN_DNSWL_MED=-2.3] 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 16tldqNUOzhv for <notmuch@notmuchmail.org>;\r
+       Fri, 19 Sep 2014 11:17:06 -0700 (PDT)\r
+Received: from max.feld.cvut.cz (max.feld.cvut.cz [147.32.192.36])\r
+       by olra.theworths.org (Postfix) with ESMTP id 6C911431FBC\r
+       for <notmuch@notmuchmail.org>; Fri, 19 Sep 2014 11:17:06 -0700 (PDT)\r
+Received: from localhost (unknown [192.168.200.7])\r
+       by max.feld.cvut.cz (Postfix) with ESMTP id 4343719F33B8;\r
+       Fri, 19 Sep 2014 20:17:01 +0200 (CEST)\r
+X-Virus-Scanned: IMAP STYX AMAVIS\r
+Received: from max.feld.cvut.cz ([192.168.200.1])\r
+       by localhost (styx.feld.cvut.cz [192.168.200.7]) (amavisd-new,\r
+       port 10044)\r
+       with ESMTP id 05hp7XXW-6Nl; Fri, 19 Sep 2014 20:16:57 +0200 (CEST)\r
+Received: from imap.feld.cvut.cz (imap.feld.cvut.cz [147.32.192.34])\r
+       by max.feld.cvut.cz (Postfix) with ESMTP id C690219F33C7;\r
+       Fri, 19 Sep 2014 20:16:56 +0200 (CEST)\r
+Received: from wsh by steelpick.2x.cz with local (Exim 4.84)\r
+       (envelope-from <sojkam1@fel.cvut.cz>)\r
+       id 1XV2jn-0005hz-TT; Fri, 19 Sep 2014 20:16:55 +0200\r
+From: Michal Sojka <sojkam1@fel.cvut.cz>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH v4 0/3] Emacs: Address completion implemented in elisp\r
+Date: Fri, 19 Sep 2014 20:16:39 +0200\r
+Message-Id: <1411150602-21892-1-git-send-email-sojkam1@fel.cvut.cz>\r
+X-Mailer: git-send-email 2.1.0\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: Fri, 19 Sep 2014 18:17:12 -0000\r
+\r
+Hi,\r
+\r
+this is another version of my address completion patchset. It\r
+obsoletes id:1407771091-12651-1-git-send-email-sojkam1@fel.cvut.cz.\r
+\r
+This version works reasonably well on systems with rotating disk,\r
+which was my main problem with the previous version. It also\r
+incorporates suggestions pointed out by others.\r
+\r
+This is not (yet) based on Jani's patch for printing the addresses by\r
+notmuch search (id:1410021689-15901-1-git-send-email-jani@nikula.org).\r
+I'll at this as a next step as it will simplify the elisp code and\r
+make the address completion faster.\r
+\r
+Michal Sojka (3):\r
+  Emacs: Display a message when generating address completion candidates\r
+  Emacs: Add address completion mechanism implemented in elisp\r
+  Emacs: Add address completion based on company-mode\r
+\r
+ emacs/Makefile.local     |   6 ++-\r
+ emacs/notmuch-address.el | 126 +++++++++++++++++++++++++++++++++++++++++++----\r
+ emacs/notmuch-company.el |  81 ++++++++++++++++++++++++++++++\r
+ emacs/notmuch-lib.el     |   3 ++\r
+ 4 files changed, 206 insertions(+), 10 deletions(-)\r
+ create mode 100644 emacs/notmuch-company.el\r
+\r
+-- \r
+2.1.0\r
+\r