From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7577 invoked by alias); 8 Oct 2016 07:42:27 -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: X-Seq: 22002 Received: (qmail 23229 invoked from network); 8 Oct 2016 07:42:27 -0000 X-Qmail-Scanner-Diagnostics: from out5-smtp.messagingengine.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(66.111.4.29):SA:0(0.0/5.0):. Processed in 0.775342 secs); 08 Oct 2016 07:42:27 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.1 X-Envelope-From: d.s@daniel.shahaf.name X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: none (ns1.primenet.com.au: domain at daniel.shahaf.name does not designate permitted sender hosts) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= daniel.shahaf.name; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-sasl-enc :x-sasl-enc; s=mesmtp; bh=biwB+5OAcmFiiCIVPpNs2uc+j5I=; b=S4Q8eQ PJjaHatBSq1/9kpOLtilIognGpPibdAiPqPHqVs+xn0rgSu0MtSUO2y/LhmiiQFR LwWX2lH/1jR6w3lLp+m0McVSA4FEyE+6dpXXM4c8+lmryRGehWSBLV0O/dJ8Y1lM SC1WAp7FI3z/UV8aI2KiP6s3X1fR4Qd2s3GVI= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-sasl-enc :x-sasl-enc; s=smtpout; bh=biwB+5OAcmFiiCIVPpNs2uc+j5I=; b=smy3E sNQrNZaIYBJQYDSxq250X57KSFYsINHVAOpCkh/sr909JoOza7d29/rTTZ2WWXRa fdjw4+TNeHC+DVn/Z41tUqQLNnlmlw9isAwT5irpGFP/COQ0s5WUzERReh+u1frx 7toy6r9Quzy2VLuFxxRbYiL6GCc8p9eeO+gthc= X-Sasl-enc: nEwI5X7JwqF9UncqNEE1hf6Wucprejs5rbpW47doGENP 1475912538 Date: Sat, 8 Oct 2016 07:40:45 +0000 From: Daniel Shahaf To: Fourhundred Thecat <400thecat@gmx.ch> Cc: zsh-users@zsh.org Subject: Re: filename autocompletion/autocorrection misfeature Message-ID: <20161008074045.GA4681@fujitsu.shahaf.local2> References: <57F896B2.9010506__48050.8810993799$1475909404$gmane$org@gmx.ch> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <57F896B2.9010506__48050.8810993799$1475909404$gmane$org@gmx.ch> User-Agent: Mutt/1.5.23 (2014-03-12) Fourhundred Thecat wrote on Sat, Oct 08, 2016 at 08:48:18 +0200: > $ ls gs > $ ls logs > > How can I disable this "feature" ? It's not enabled by default; something in your setup opts in to it. Judging by your reference to DISABLE_CORRECTION, which is not a zsh thing at all (not in zshparams(1)), I suspect it's enabled by some configuration framework you use. So, you should really follow up with that framework's support venue. However, we may be able to steer you in the right direction. What's the output of . bindkey $'\t' zstyle -L \* completer . ? > I tried adding following options into my .zshrc, but that did not help: > > DISABLE_CORRECTION="true" > unsetopt correct > unsetopt correct_all > Not sure about the first one (as I said: it's not a zsh feature), but the latter two should be placed at the end of .zshrc to be effective.