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 2D104431FB6 for ; Sat, 19 Apr 2014 01:53:03 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0.201 X-Spam-Level: X-Spam-Status: No, score=0.201 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_ENVFROM_END_DIGIT=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 KdhMsRy9ZCQL for ; Sat, 19 Apr 2014 01:52:58 -0700 (PDT) Received: from mail-wi0-f173.google.com (mail-wi0-f173.google.com [209.85.212.173]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 8B3E9431FAF for ; Sat, 19 Apr 2014 01:52:58 -0700 (PDT) Received: by mail-wi0-f173.google.com with SMTP id z2so280444wiv.12 for ; Sat, 19 Apr 2014 01:52:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=DxR1XCjGQU/kN5ylDAhzNIjn1y98TecGEmOZNcDJyaw=; b=lhctLE6BEDmXUaNZTjq2rKsv+MnKdU5WgwgYUXK16U07i+y/laqVQbr/Y76y2x3Ka3 9KnqOAfYlcfItPQ8O03i/gfXOmiomOVEn9pMHd04MRylGuNt6mcCXSgiQDtN3AWKmhaU pbN2gucr5h58yLO7z6ryvleph4BENDsqeB7NtgUwphzBv/WoitM7+yviXx6D4yhVMwQ7 P/BaMKmfBTQOmAvVqaC2azPIOxJjHDEBCBxIYWz/jxaeBDsrJq5+H0EVT1ftFDryfA0e xsEQ/wntdyap2vS8xzRXhagvldMXFwGdlAuacMpeAxqZBvw1hTo43ccOwFRbbXCQDIXX IXbg== X-Received: by 10.180.212.107 with SMTP id nj11mr5369232wic.40.1397897576182; Sat, 19 Apr 2014 01:52:56 -0700 (PDT) Received: from localhost (94.196.248.227.threembb.co.uk. [94.196.248.227]) by mx.google.com with ESMTPSA id g13sm47185849wjn.15.2014.04.19.01.52.51 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sat, 19 Apr 2014 01:52:55 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH v2] NEWS for displaying tag changes Date: Sat, 19 Apr 2014 09:52:35 +0100 Message-Id: <1397897555-22178-1-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: References: 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: Sat, 19 Apr 2014 08:53:03 -0000 --- Fixed the markdown and the bracket error. Best wishes Mark NEWS | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/NEWS b/NEWS index 19c6556..39fa447 100644 --- a/NEWS +++ b/NEWS @@ -52,6 +52,27 @@ The keys of `notmuch-tag-formats` are now regexps `notmuch-tag-formats` will continue to work as before unless tags contain regexp special characters like `.` or `*`. +Changed tags are now shown in the buffer + + Previously tag changes made in a buffer were shown immediately. In + some cases (particularly automatic tag changes like marking read) + this made it hard to see what had happened (e.g., whether the + message had been unread). + + The changes are now shown explicitly in the buffer: by default + deleted tags are displayed with red strike-through and added tags + are displayed underlined in green (inverse video is used for deleted + tags if the terminal does not support strike-through). + + The variables `notmuch-tag-deleted-formats` and + `notmuch-tag-added-formats`, which have the same syntax as + `notmuch-tag-formats`, allow this to be customized. + + Setting `notmuch-tag-deleted-formats` to `'((".*" nil))` and + `notmuch-tag-added-formats` to `'((".*" tag))` will give the old + behavior of hiding deleted tags and showing added tags identically + to tags already present. + Version variable The new, build-time generated variable `notmuch-emacs-version` is used -- 1.7.10.4