Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: filename autocompletion/autocorrection misfeature
- X-seq: zsh-users 22005
- From: Oliver Kiddle <okiddle@xxxxxxxxxxx>
- To: Fourhundred Thecat <400thecat@xxxxxx>
- Subject: Re: filename autocompletion/autocorrection misfeature
- Date: Thu, 13 Oct 2016 11:24:49 +0200
- Cc: zsh-users@xxxxxxx
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.co.uk; s=s2048; t=1476350689; bh=jzoD5fxRNQx5248cTDt6zJlMQQ9o2NHen8czjxprLmQ=; h=cc:In-reply-to:From:References:To:Subject:Date:From:Subject; b=JN2TZCJ06KCQ8TXfml0JWkoggzkcBNYU8sABQoxZadbVNVcOtRzBRBUKmhKb4U6q1k+Z5fkvvrxdU2PrjscN0hcEuHkNB9FuZD45h5aw20n/RfGHW6H3j1KLrAZSAQmcb83IcrXV7/FsWdU6Y4seNta/ddKCJFA3r+keOC/OarnyWCIViou9w/SI27um6Ivbk8HWjj/h9nAxV7ZaByYx/0kHyKECgnyBbJfbn4Krt+EmUGSDwrzsFH4d1dgP62dR2n8QlkyjY2yoJctSKsDeVtoHwyUsfsdvocXHpiKPrRZIB4tiZTOFObJyFPLqij13nSYzaqxAWIFqVzHNVMaPzA==
- In-reply-to: <57F8A8A7.8040405@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> <20161008074045.GA4681@fujitsu.shahaf.local2> <57F8A8A7.8040405@gmx.ch>
On 8 Oct, Fourhundred Thecat wrote:
> > However, we may be able to steer you in the right direction. What's the
> > output of
> > .
> > bindkey $'\t'
> > zstyle -L \* completer
> > .
>
> the output is:
>
> "^I" expand-or-complete
> zstyle ':completion:*' completer _expand _complete
Nothing there looks like the cause though it seems strange to combine _expand
with expand-or-complete. Normally, you would either stick with using
expand-or-complete as the default or bind tab to complete-word and then
carefully configure _expand to your taste.
The next thing I would check is for matching control:
zstyle -L \* matcher
zstyle -L \* matcher-list
If that doesn't work, try bisecting your entire .zshrc until you
narrow down that line or lines that cause the problem. You can also
run zsh -f to start with a clean setup and paste in lines.
Oliver
Messages sorted by:
Reverse Date,
Date,
Thread,
Author