Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 458DA431FD0 for ; Thu, 9 Dec 2010 14:21:51 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.799 X-Spam-Level: X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aE4YHAG+5NB4 for ; Thu, 9 Dec 2010 14:21:51 -0800 (PST) Received: from mail-bw0-f52.google.com (mail-bw0-f52.google.com [209.85.214.52]) by olra.theworths.org (Postfix) with ESMTP id B4A35431FB5 for ; Thu, 9 Dec 2010 14:21:50 -0800 (PST) Received: by bwz4 with SMTP id 4so3695290bwz.39 for ; Thu, 09 Dec 2010 14:21:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer:in-reply-to:references; bh=JldpYdcbwDYNfDBCCKbt5aEydBDtcSq0b1Rcukd+vOk=; b=BNC5NXkldNPTHoPNJeOPeAM7ToBzqWpZYCNbt9NwPH8R+GWD4/6u3LTmL7rOjj945R iYz9Js4P2+mCoMi4uMZeARMC35Z54YlZTMQWGbMDXzWJi3rQX3LCXv3vhaiEZ7gFO2Qd Qb1bwGeZ5UWVZFjwjVtfCSFPmgXC79q1wF8mo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=Jy4e6DN3aRT/IkY7RzxYOzGOQwnXBmhKcokleCwZDty5nIG3pfrHCSVGlMzAZy0CJ8 OzO6MNilgQ9+0jgzGN/eYxraHiwDBlZDgDwuMEW9EHIM1VMNupuhSq4BB0wXYGDZUtqR LHqiv0vychLsAukI14BuX99VBjBIhWsrfMQIk= Received: by 10.204.34.130 with SMTP id l2mr3972244bkd.212.1291933308750; Thu, 09 Dec 2010 14:21:48 -0800 (PST) Received: from localhost (a91-153-253-80.elisa-laajakaista.fi [91.153.253.80]) by mx.google.com with ESMTPS id v1sm1217091bkt.5.2010.12.09.14.21.47 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 09 Dec 2010 14:21:48 -0800 (PST) From: Felipe Contreras To: notmuch@notmuchmail.org Subject: [PATCH 3/3] vim: implement archive in show view Date: Fri, 10 Dec 2010 00:20:40 +0200 Message-Id: <1291933240-5328-1-git-send-email-felipe.contreras@gmail.com> X-Mailer: git-send-email 1.7.3.2 In-Reply-To: <1291932985-5220-1-git-send-email-felipe.contreras@gmail.com> References: <1291932985-5220-1-git-send-email-felipe.contreras@gmail.com> Cc: Felipe Contreras X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Dec 2010 22:21:51 -0000 From: Felipe Contreras Signed-off-by: Felipe Contreras --- vim/plugin/notmuch.vim | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim index 8815712..882c141 100644 --- a/vim/plugin/notmuch.vim +++ b/vim/plugin/notmuch.vim @@ -494,7 +494,8 @@ function! s:NM_show_next_thread() endfunction function! s:NM_show_archive_thread() - echo 'not implemented' + call NM_tag(b:nm_search_words, ['-inbox']) + call NM_show_next_thread() endfunction function! s:NM_show_mark_read_then_archive_thread() -- 1.7.3.2