Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 6FA906DE0AC2 for ; Sat, 17 Oct 2015 09:30:35 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: -0.538 X-Spam-Level: X-Spam-Status: No, score=-0.538 tagged_above=-999 required=5 tests=[AWL=0.182, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-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 ThKHEoVzDBua for ; Sat, 17 Oct 2015 09:30:33 -0700 (PDT) Received: from mail-wi0-f174.google.com (mail-wi0-f174.google.com [209.85.212.174]) by arlo.cworth.org (Postfix) with ESMTPS id 62F116DE02DD for ; Sat, 17 Oct 2015 09:30:33 -0700 (PDT) Received: by wicgb1 with SMTP id gb1so43563824wic.1 for ; Sat, 17 Oct 2015 09:30:31 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=RjqR1VD91PBQUSZHXAaSn8tpDxZfsjPXdAd4zUOueNU=; b=YQeQKF5spp0RTvodlAwSCAldVXLQyTNIySRpe7kqxwf716oLDvsJu9YmXuq4CzgDtU R1gffbXgoqVMF8sJanVqfP7rZoe3exjbuZAMCEylpTDkeKqE9tBcpGIqpijPLF6WFSBT ccxXQ60BGfi89EFm1S6amQYhqF12lxd91DPm0EHMg2QVchA9NrKRrbCwttyo6zFnd1xS S1gFe9dE5uUQFeCGrfOreSAqPlr2kbm4UkIFPVOghoDQriChKjzEymP1cG/4wVXKwE2p ude+M3CKJ86gb1azQBgovJwQiCJ447uX0uvRY/YLSMflsOJnjvcg/hucJs4ZlZc/pPLU Bpgg== X-Gm-Message-State: ALoCoQnlRPv9HYUU7xOQsxr+fmODbsJPQbMLdSqvW8Naqg2WXA4MQrMm+In2wgNs15FmIwT/9lH2 X-Received: by 10.194.94.99 with SMTP id db3mr26279784wjb.141.1445099431589; Sat, 17 Oct 2015 09:30:31 -0700 (PDT) Received: from localhost (mobile-access-bcee43-111.dhcp.inet.fi. [188.238.67.111]) by smtp.gmail.com with ESMTPSA id r4sm7656027wia.19.2015.10.17.09.30.30 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 17 Oct 2015 09:30:31 -0700 (PDT) From: Jani Nikula To: notmuch@notmuchmail.org Subject: [PATCH 1/3] completion: complete notmuch count --lastmod Date: Sat, 17 Oct 2015 19:30:01 +0300 Message-Id: <1445099403-25998-1-git-send-email-jani@nikula.org> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1443265970-9875-1-git-send-email-jani@nikula.org> References: <1443265970-9875-1-git-send-email-jani@nikula.org> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.18 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, 17 Oct 2015 16:30:35 -0000 --- completion/notmuch-completion.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/completion/notmuch-completion.bash b/completion/notmuch-completion.bash index 68b069013655..1552c1e51db7 100644 --- a/completion/notmuch-completion.bash +++ b/completion/notmuch-completion.bash @@ -162,7 +162,7 @@ _notmuch_count() ! $split && case "${cur}" in -*) - local options="--output= --exclude= --batch --input=" + local options="--output= --exclude= --batch --input= --lastmod" compopt -o nospace COMPREPLY=( $(compgen -W "$options" -- ${cur}) ) ;; -- 2.1.4