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 20968 invoked from network); 5 Apr 2020 16:49:15 -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; 5 Apr 2020 16:49:15 -0000 Received: (qmail 15179 invoked by alias); 5 Apr 2020 16:49:07 -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: 24743 Received: (qmail 25962 invoked by uid 1010); 5 Apr 2020 16:49:07 -0000 X-Qmail-Scanner-Diagnostics: from 6.smtp.34sp.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.102.2/25771. spamassassin: 3.4.4. Clear:RC:0(46.183.8.229):SA:0(-1.9/5.0):. Processed in 2.356089 secs); 05 Apr 2020 16:49:07 -0000 X-Envelope-From: dave@tty1.uk X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: none (ns1.primenet.com.au: domain at tty1.uk does not designate permitted sender hosts) Date: Sun, 5 Apr 2020 17:48:26 +0100 From: Dave Woodfall To: zsh-users@zsh.org Subject: Re: menu completion Message-ID: <20200405164826.GA9554@blackswan.r0t.uk> Mail-Followup-To: zsh-users@zsh.org References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: X-Authenticated-As: dave@unrealize.co.uk X-OriginalSMTPIP: 82.40.94.2 X-34spcom-MailScanner-Information: Please contact the ISP for more information X-34spcom-MailScanner-ID: 9EF953E0376.A26EF X-34spcom-MailScanner: Found to be clean X-34spcom-MailScanner-SpamCheck: not spam, SpamAssassin (score=-10, required 6.5, autolearn=disabled, X34SP_OVERRIDE -10.00) X-34spcom-MailScanner-From: dave@tty1.uk On 2020-04-05 14:00, Pier Paolo Grassi put forth the proposition: > Hello, when trying to complete with interactive menu completion some > command with many options, eg grep, I get a message like > zsh: do you wish to see all 156 possibilities (41 lines)? > is it possibile to disable it and just see the interactive menu? > > Pier Paolo Grassi If you use the zstyle `menu' set to `select' it should do this: zstyle ':completion:*' menu select There are more settings listed in man zshcompsys: man zshcompsys | less -p "^ menu" -- Dave