Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: filename autocompletion/autocorrection misfeature
- X-seq: zsh-users 22002
- From: Daniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx>
- To: Fourhundred Thecat <400thecat@xxxxxx>
- Subject: Re: filename autocompletion/autocorrection misfeature
- Date: Sat, 8 Oct 2016 07:40:45 +0000
- Cc: zsh-users@xxxxxxx
- 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=
- In-reply-to: <57F896B2.9010506__48050.8810993799$1475909404$gmane$org@gmx.ch>
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
- References: <57F896B2.9010506__48050.8810993799$1475909404$gmane$org@gmx.ch>
Fourhundred Thecat wrote on Sat, Oct 08, 2016 at 08:48:18 +0200:
> $ ls gs<tab>
> $ 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.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author