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.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,FREEMAIL_FROM,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 fd810434 for ; Tue, 8 Jan 2019 09:50:38 +0000 (UTC) Received: (qmail 15944 invoked by alias); 8 Jan 2019 09:50:21 -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: 23827 Received: (qmail 28769 invoked by uid 1010); 8 Jan 2019 09:50:21 -0000 X-Qmail-Scanner-Diagnostics: from mail-yw1-f44.google.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.100.2/25112. spamassassin: 3.4.2. Clear:RC:0(209.85.161.44):SA:0(-2.0/5.0):. Processed in 2.15859 secs); 08 Jan 2019 09:50:21 -0000 X-Envelope-From: timothee.cour@gmail.com X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=YTdyvw6qDUaV4LI4GakfnprySCpl0J/1LdjpkyAOE+A=; b=YrX7lIoISoCm53XR92F010s2fdCUtBwm3F9rauCc7M8zbKF1KnjE2x7kGe1O6cOyT2 Pv2mBGAsJhQHXQ41VBaX973WBVXDhz9dUj9blO7wjEJfRRHJ3L+jNf4fjofMBtDE31dh jx/K8EhI7rUwRGwfLX+n+4VHtmsnFADmy7ZkmWs4NJM15+Wu/ev+wDBfOmCU1gEeo6ka 5a0ZCwe1N3BWTaMdpQk67wYV/5P/Zm68oKVUXVqMQO2lgScti99sAh0Egq+mnQboq3z2 3fKtDnFder00xGSgaM2QA6R8YflPMK9nmk5yWoFnvcaQeWKZIPewPc18Q88tET1uPknl LQ0w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=YTdyvw6qDUaV4LI4GakfnprySCpl0J/1LdjpkyAOE+A=; b=D2nb3SuVP5ykj3dDHadXLNug9RBQJWoPRYk8zg+afQCr+uI92daU8lQtpOaa2irkYb IZRCHrNDhBt7/QA73hVHNFrOCmCbCfCFNoZCGV8dFxE334xAtU0nltWgmgYiQtw9zmrf b6BIiTR9oimzK2NRV8hA5tU/kBqMYAMYOGSMfzwRr3aLhT/VRqhg/pOSXkp2kWe44jy1 nM+AsE54kbWEOjiKTgYJEJYms4e1Ocg5ZJTTtdgDj7pEzslBF4XYmStj3WtnhVvyfZby va4hecNKHaXzu1ja1/r6KbfbrdSTCy4mgUBH3Y5U4osV/GsZs03PnHD/QW8ixSY3QGNo Ywyw== X-Gm-Message-State: AJcUukfHtGL+xOMQA7D0TQf8fR3q58hsXgrrXZSbCYJeHMDiBKE5PwuU RcGyA2LXRuRCc2tJSjz8K6hqmI4Hwq0MwSNtYW1rtE31 X-Google-Smtp-Source: ALg8bN7lC4NfqAKCZnfpCXe1Y6I7oZYCNakrHDMaDkqEU9/P6fE1bOPN+/D69MZFZcmE6wCQztBWQbC8ExFv8kfjIro= X-Received: by 2002:a81:5404:: with SMTP id i4mr869959ywb.364.1546941012951; Tue, 08 Jan 2019 01:50:12 -0800 (PST) MIME-Version: 1.0 From: Timothee Cour Date: Tue, 8 Jan 2019 01:49:46 -0800 Message-ID: Subject: how to make zsh tab-complete path after colon (instead of just `=`) To: Zsh Users Content-Type: text/plain; charset="UTF-8" I have the same question as many others, see https://stackoverflow.com/questions/40194030/make-zsh-tab-complete-path-after-colon and https://unix.stackexchange.com/questions/445889/use-colon-as-filename-separator-in-zsh-tab-completion is it possible make zsh complete filenames after a colon (instead of just after `=`) ? t foo=/tm autocomples with /tmp t foo:/tm doesn't do any autocomplete (IIRC in bash COMP_WORDBREAKS can be used for that) I don't want to specify this rule for every single command, I want it to apply to all commands by default