From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=DKIM_ADSP_CUSTOM_MED, FREEMAIL_FROM,MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 29967 invoked from network); 28 May 2020 20:05:52 -0000 Received: from ns1.primenet.com.au (HELO primenet.com.au) (203.24.36.2) by inbox.vuxu.org with ESMTPUTF8; 28 May 2020 20:05:52 -0000 Received: (qmail 8128 invoked by alias); 28 May 2020 20:05:38 -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: 24884 Received: (qmail 28761 invoked by uid 1010); 28 May 2020 20:05:38 -0000 X-Qmail-Scanner-Diagnostics: from mail-lj1-f195.google.com by f.primenet.com.au (envelope-from <8fvebtoeq87@gmail.com>, uid 7791) with qmail-scanner-2.11 (clamdscan: 0.102.3/25821. spamassassin: 3.4.4. Clear:RC:0(209.85.208.195):SA:0(-1.7/5.0):. Processed in 0.734492 secs); 28 May 2020 20:05:38 -0000 X-Envelope-From: 8fvebtoeq87@gmail.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.208.195 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:from:date:message-id:subject:to; bh=ThcsNB0V7fiQ1RC8cmVT6/TC1jcWI8C5ox829TEmAuA=; b=KWNleV7Eop4hHrPX+Jb2tD7kKxRvPhmCrxs/oVdvlXmjS8AojlIrPVwMRg1KF2RjFg PvjPxlLUDJSoVCuSXcQhkQpu0x6QVxyDQupx47A5/69NX2bDyXn+2PTFKKX8EqrGlJre /+PSQypjtf7Gpns9bVtEzc0zkqkMyLD5Yf0FBOLeaJD8yV+QrPVwA8n0d++/a4xKiRqv RdxTCLIadhm+lhhAWyfiaoHFTK/LKoGATkXC+zgbU8f/d8ZdrIHjIB1fnj68kewdYUHr 4AgcOotQ4dTNzHnWanBWebBOxWEF2TwzrFhImR18bTdWweZcUSxotDOSWIxCTcAshfH6 ncHA== X-Gm-Message-State: AOAM531oO2hr0yLMUJR5reXjQVy0CM4I7kN/ofQm0aymj/bB6wTJBNPQ ti9yKoEICAMJQCKepFxMLn1zHopp7Fw+IaOGuyCdM6uGOaQ= X-Google-Smtp-Source: ABdhPJxtDcttxS6q1S2c4bD6lQah3de7v+s4JglIJbFE/xPCH9OjAZbEyVtDlqva7xCb7lMZLxS48Wk7kdImKEzny+w= X-Received: by 2002:a2e:9b50:: with SMTP id o16mr2493190ljj.164.1590696303365; Thu, 28 May 2020 13:05:03 -0700 (PDT) MIME-Version: 1.0 From: Alan <8fvebtoeq87@gmail.com> Date: Thu, 28 May 2020 16:04:52 -0400 Message-ID: Subject: Don't append slash when auto completing a symbolic link pointing to a directory To: zsh-users@zsh.org Content-Type: multipart/alternative; boundary="0000000000001b954705a6bad817" --0000000000001b954705a6bad817 Content-Type: text/plain; charset="UTF-8" Hi, I'm switching from bash to zsh and prefer bash's default behavior of not appending a slash when auto completing a symbolic link pointing to a directory. For example: $ mkdir directory $ ln -s directory symblink $ ls sym At this point, in bash, you would get: $ ls symblink In zsh, I'm getting: $ ls symblink/ Also, in bash, hitting a when the full symbolic link is already present would then append the slash to the symbolic link: $ ls symblink $ ls symblink/ Is there anyway to get this behavior with zsh? I looked through "man zshoptions" this time and couldn't find anything specific to this. Thanks for your help! --0000000000001b954705a6bad817--