From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=MAILING_LIST_MULTI, RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.2 Received: (qmail 20239 invoked from network); 6 Apr 2020 01:02:48 -0000 Received-SPF: pass (primenet.com.au: domain of zsh.org designates 203.24.36.2 as permitted sender) receiver=inbox.vuxu.org; client-ip=203.24.36.2 envelope-from= Received: from ns1.primenet.com.au (HELO primenet.com.au) (203.24.36.2) by inbox.vuxu.org with UTF8ESMTPZ; 6 Apr 2020 01:02:48 -0000 Received: (qmail 19076 invoked by alias); 6 Apr 2020 01:02:41 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: List-Unsubscribe: X-Seq: 24756 Received: (qmail 9149 invoked by uid 1010); 6 Apr 2020 01:02:41 -0000 X-Qmail-Scanner-Diagnostics: from mail-qv1-f50.google.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.102.2/25772. spamassassin: 3.4.4. Clear:RC:0(209.85.219.50):SA:0(-1.9/5.0):. Processed in 1.52209 secs); 06 Apr 2020 01:02:41 -0000 X-Envelope-From: dana@dana.is X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: pass (ns1.primenet.com.au: SPF record at _netblocks.google.com designates 209.85.219.50 as permitted sender) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=zn9XiMG3swrei2uDA8oeJBBh4iGTyD3I9xRnOe3A0uo=; b=G4VDw5N1sq2Il8HOcapXxP9fPeiD/vOLictWn6YiYQoDFHIfli4V7W9uHYi3CUAAeh s7jS1C4o/5vcBxA+qBkgvXz3vl+ag5mJLiZUxw4EKS0J+wWpoGisDfjSdtghQ2qW16J3 ouRfJS2tWQ37eKU9XusVnK1/VE17IfvSAtoJ8YrHMtWgWxHbOCEHTZG0NVemAkMyBmkv Uel7EGeadDy14dkUedOgDnmq5kesCpyZDOY056zrsMvyXO0fLlzHmM42RjMjHCLgHlxA REqb4Fgtgtp0g2N8LII1+nXnfc8+UuATWQFSJi3keB3A79Pvdww1pKV0+SWOvEJRYXHX zuoQ== X-Gm-Message-State: AGi0Pubat7G0XFtdhKnTu1xFNmGmxETkgckIJp6Pufwo8+IrTjk/M2Dc 8eUsBIbuR0tq2U4sIcDTZebn1r/gi9AgOw== X-Google-Smtp-Source: APiQypKJ8hB1elKFVSU1oHON3cBFxFQ/kCZa9pJ6Wau2cKVe/+5shginzc+2XkDxNbiIsiJjxbhTCQ== X-Received: by 2002:ad4:4388:: with SMTP id s8mr18640340qvr.2.1586134926762; Sun, 05 Apr 2020 18:02:06 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 13.0 \(3608.60.0.2.5\)) Subject: Re: Separate sections for manuals: what am I missing? From: dana In-Reply-To: <20200406002612.GE9554@blackswan.r0t.uk> Date: Sun, 5 Apr 2020 20:02:04 -0500 Cc: Zsh Users Content-Transfer-Encoding: 7bit Message-Id: References: <20200406002612.GE9554@blackswan.r0t.uk> To: Dave Woodfall X-Mailer: Apple Mail (2.3608.60.0.2.5) On 5 Apr 2020, at 19:26, Dave Woodfall wrote: > However, selecting any section manual will always gets the first > section manual listed. > > Do I need to add some other option so that I get can get e.g. > printf(3)? I think you want insert-sections. I guess it's not actually in the documentation (i'll add it later), but the tag takes the form manuals., where is a pattern matching the section(s) you want to insert. So you can just do this if you want to insert all sections: zstyle ':completion:*:manuals.*' insert-sections true This also seems popular (insert all sections but 1): zstyle ':completion:*:manuals.^1' insert-sections true dana