From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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=DKIM_SIGNED,DKIM_VALID, MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.2 Received: from primenet.com.au (ns1.primenet.com.au [203.24.36.2]) by inbox.vuxu.org (OpenSMTPD) with ESMTP id 67bf9ba7 for ; Sun, 29 Sep 2019 19:07:19 +0000 (UTC) Received: (qmail 11807 invoked by alias); 29 Sep 2019 19:07:13 -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: 24314 Received: (qmail 16470 invoked by uid 1010); 29 Sep 2019 19:07:13 -0000 X-Qmail-Scanner-Diagnostics: from mail-lf1-f43.google.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.101.2/25587. spamassassin: 3.4.2. Clear:RC:0(209.85.167.43):SA:0(-1.9/5.0):. Processed in 1.88602 secs); 29 Sep 2019 19:07:13 -0000 X-Envelope-From: schaefer@brasslantern.com 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.167.43 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern-com.20150623.gappssmtp.com; s=20150623; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=pekriHTp7T5TPAen/Ew551jN7Uyit5tAMeZUkTXrhCM=; b=u2vzQ1bogmJiY15rIOJ6gEBEFffVMWRT/1ftxcbAbWtEa0HaY3Ry3ss//wbpBwabDW YmfiL6DNPecJP3OCQGSLPR1TI6Msu0zuJ6hUQUOlsMXh/LKWIRyGi9EFxE2YdSbVY/v6 lHXQU9HU15ithAkOQkksWYP+EQ49KaymcipPwGU1qwEHwhcHOHbHuRCacT4Ua459F68J meEb0mGlaVX8ZK4VZA5hEq0auwn+TU21+dL7taNJAEC3YEQDT6UUA/KwvMirC5bR8/kz S7Bn6CAINmFEzHmrRv6Qkfk0N2M3MGeehxuyvV/2YknpIXrfzRg0yKW0inMCB0vrdAX8 0pbA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=pekriHTp7T5TPAen/Ew551jN7Uyit5tAMeZUkTXrhCM=; b=ZDhPMuRQirgPpaySoZ+wUuHNLDt5v1qJg5MsY6WGJSjJeq537FBRZ1YpDYXA8ELnE6 W+I1AjqY3A7ULFTmTaSLYRDDI9DG3I4n/P3lRbxERUVcpUvLerz9I9PxZuyYDTpVC1q0 Q7VQw9nsTtWIIWSC1Aj2Vi1ez7E/zDm47lYDpn7fLrR7AVC+vKbZ66LeCSTJSpR4jdlP H73K08xyzzKPXafwhNjHnVP5pUWyKIVFBjmmh2EN0WAbLdscoDnMdEqbQDpLQRwJ1hyZ n7Sg1SPsTsLwhCGGPEkeQfUpDWmRdLbZjcvHCeBfW6UmNaI4bLLFV2mwPd03XnQP9v2q 8wlw== X-Gm-Message-State: APjAAAV3X32RCuZOvBszYM+DT7qgSrH9dV7QozEkVql6jlJchn9uL1Id kOLwa9EVh0LFYgd2cjvL4uJtcZWhvfYnFde2mTMevA== X-Google-Smtp-Source: APXvYqzVCFlFf6TOzR3eiVE+qFwnhtzLi6eiLlWNg390WXUkhK2pWxK1dE2GDLAHeR0QL5pb+VOXGmvNo3A2befPkes= X-Received: by 2002:ac2:4424:: with SMTP id w4mr8799111lfl.65.1569783996275; Sun, 29 Sep 2019 12:06:36 -0700 (PDT) MIME-Version: 1.0 References: <306325bb-395d-a16b-a771-0786c23cb46e@eastlink.ca> <8ef96620-e762-d52c-207f-c3ac5620879f@eastlink.ca> <9EEEB6F5-9B9C-4C8E-8593-4917F8AF79DF@dana.is> <486df91b-8c6c-b129-2538-15e4d6126eb9@eastlink.ca> In-Reply-To: From: Bart Schaefer Date: Sun, 29 Sep 2019 12:06:24 -0700 Message-ID: Subject: Re: completion is over thinking things. To: Ray Andrews Cc: Zsh Users Content-Type: text/plain; charset="UTF-8" On Sun, Sep 29, 2019 at 11:42 AM Ray Andrews wrote: > > Not to tempt the Gods, but if I changed the order: > > zstyle ':completion:*' completer _files _expand _complete > > ... would I get files offered first? Yes, but in that case you'd rarely get the defined completions for the context. Also you probably would want to keep _expand as the first function, even if you swap the other two.