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 F37CA429E25 for ; Sun, 10 Jul 2011 22:40:42 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.699 X-Spam-Level: X-Spam-Status: No, score=-0.699 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-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 HTF8YorXzhmq for ; Sun, 10 Jul 2011 22:40:42 -0700 (PDT) Received: from mail-vx0-f181.google.com (mail-vx0-f181.google.com [209.85.220.181]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id D7DD1431FB6 for ; Sun, 10 Jul 2011 22:40:37 -0700 (PDT) Received: by mail-vx0-f181.google.com with SMTP id 40so2729649vxa.26 for ; Sun, 10 Jul 2011 22:40:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:from:to:subject:date:message-id:x-mailer:in-reply-to :references; bh=6na4Y5Tho+bq48pjFQmLnVx+D9OHYgFPskFUMTl4hng=; b=HcL0G5uHoxWrlKvp/Oj2vVFXrgE5znomhvXrvNlaZ/5s/xNLxCP8hw/9qnrv59yQS9 QGJikKvcRwXXFcoGg9ppLGBvn0dYxzNtUr85EBMKwFoSa6AsCQpJaMLb072cXoZmQAKD 5NISkULCljS0BpwpGHDsjGL8XPxcU+uPyA6+w= Received: by 10.52.65.197 with SMTP id z5mr242874vds.15.1310362837613; Sun, 10 Jul 2011 22:40:37 -0700 (PDT) Received: from localhost.localdomain (c-98-216-100-90.hsd1.ma.comcast.net [98.216.100.90]) by mx.google.com with ESMTPS id bl2sm5324172vbb.9.2011.07.10.22.40.36 (version=SSLv3 cipher=OTHER); Sun, 10 Jul 2011 22:40:37 -0700 (PDT) Sender: Jason Woofenden From: Jason Woofenden To: notmuch@notmuchmail.org Subject: [PATCH 3/5] vim: fix on-screen instructions for show-signature Date: Mon, 11 Jul 2011 01:40:08 -0400 Message-Id: <1310362810-10926-4-git-send-email-jason@jasonwoof.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1310362810-10926-1-git-send-email-jason@jasonwoof.com> References: <1310362810-10926-1-git-send-email-jason@jasonwoof.com> 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: Mon, 11 Jul 2011 05:40:43 -0000 Also change a passed parameter to be consistent with the current binding. This parameter appears to be unused. --- vim/plugin/notmuch.vim | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim index e4b22d3..3982008 100644 --- a/vim/plugin/notmuch.vim +++ b/vim/plugin/notmuch.vim @@ -149,7 +149,7 @@ let g:notmuch_show_maps = { \ 'b': ':call NM_show_fold_toggle(''b'', ''bdy'', !g:notmuch_show_fold_bodies)', \ 'c': ':call NM_show_fold_toggle(''c'', ''cit'', !g:notmuch_show_fold_citations)', \ 'h': ':call NM_show_fold_toggle(''h'', ''hdr'', !g:notmuch_show_fold_headers)', - \ 'i': ':call NM_show_fold_toggle(''s'', ''sig'', !g:notmuch_show_fold_signatures)', + \ 'i': ':call NM_show_fold_toggle(''i'', ''sig'', !g:notmuch_show_fold_signatures)', \ \ 'I': ':call NM_show_mark_read_thread()', \ 'a': ':call NM_show_archive_thread()', @@ -757,7 +757,7 @@ function! s:NM_cmd_show_parse(inlines) let mode_type = '' elseif part_end let foldinfo = [ mode_type, mode_start, outlnum-1, len(info['msgs']), - \ printf('[ %d-line signature. Press "s" to show. ]', outlnum - mode_start) ] + \ printf('[ %d-line signature. Press "i" to show. ]', outlnum - mode_start) ] let mode_type = '' endif endif -- 1.7.5.4