From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 7A2406DE0F32 for ; Tue, 12 Nov 2019 07:58:55 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: -0.18 X-Spam-Level: X-Spam-Status: No, score=-0.18 tagged_above=-999 required=5 tests=[AWL=-0.290, DKIM_SIGNED=0.1, T_DKIM_INVALID=0.01] autolearn=disabled Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PEkpSIOFXK32 for ; Tue, 12 Nov 2019 07:58:54 -0800 (PST) Received: from jb55.com (jb55.com [45.79.91.128]) by arlo.cworth.org (Postfix) with ESMTPS id 17BE06DE0F31 for ; Tue, 12 Nov 2019 07:58:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d= jb55.com; h=from:to:subject:date:message-id; s=default; bh=/bYy+2PkhF9XYcLj0ibm/3SaMLL9x25XtCBm5x8YI8Y=; b=iS6ZakGgRv/p3hP/9JOUaUbx8sSusluoNKXC8HutTe2t5Ji6D85SuFfp77ZWyO06PmT78bttWwbjfDrDJaxe3ZyxqHposHBlfKoQncGS04lehPIN80p44Ew+45mnAad7ooz/9ke+ZlWE385TQhrQ9YY3YAIFaecwRL7rUpLpADg3ptBXjvanBvBCvSK19AwT8MBt7RMgtaoBHq3e/iu0YqEOL4QlvLAuqdQ+M8Kv+TQe3mu6KjTyy5Y9djGT7fo5HH1pKV3GORc+7wsb5G6tGiRqF5sJ/ytMHinksbryl8M89e427OG4Cvh6V7RSoSHR9uiJznnPYj6M3dW2bRkl6Q== Received: from jb55.com (S010660e327dca171.vc.shawcable.net [24.84.152.187]) by jb55.com (OpenSMTPD) with ESMTPSA id 6ba591be TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Tue, 12 Nov 2019 15:58:52 +0000 (UTC) From: William Casarin To: Teemu Likonen , David Edmondson , Johan Parin Cc: notmuch@notmuchmail.org Subject: Re: Unread handling In-Reply-To: <87pnhxceoy.fsf@iki.fi> References: <875zjpw7wl.fsf@jb55.com> <87v9rpcibl.fsf@iki.fi> <87zhh1urf6.fsf@jb55.com> <87sgmtcfh0.fsf@iki.fi> <87pnhxceoy.fsf@iki.fi> Date: Tue, 12 Nov 2019 07:58:52 -0800 Message-ID: <87sgmtulvn.fsf@jb55.com> MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.29 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: Tue, 12 Nov 2019 15:58:55 -0000 Teemu Likonen writes: > Teemu Likonen [2019-11-12T16:54:35+02] wrote: > >> But indeed, a command like "notmuch-search-show-thread-tree" (M-RET, >> C-u RET, C-RET...) would be useful: open current thread directly in >> tree view and with current search terms. > > But that is already there (without keybinding): > > (defun notmuch-tree-from-search-thread () > "Show the selected thread with notmuch-tree" > (interactive) > (notmuch-tree (notmuch-search-find-thread-id) > notmuch-search-query-string > nil > (notmuch-prettify-subject (notmuch-search-find-subject)) > t)) oh!! This is exactly what I was looking for. Just need to bind this. Thanks, Will