Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Giving "ls" an alias causing completion problems
- X-seq: zsh-users 17941
- From: İsmail Dönmez <ismail@xxxxxxxxx>
- To: zsh-users@xxxxxxx
- Subject: Giving "ls" an alias causing completion problems
- Date: Thu, 22 Aug 2013 13:31:09 +0300
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=donmez.ws; s=www; h=mime-version:from:date:message-id:subject:to:content-type; bh=mr5SdscXLvuK+cl0SsMQtPF8R7SkHRJjIOnd5wNlbBQ=; b=EtjeC9cS+AopgYYef2LmH/q5uja4Lic0nSs82WibRf5hOABEvTrScgh81evqHTkcn3 npuPPb6xEjohXJJkP1fYdJk8QxTpFGcFzT0YO4dvD7xSpA2oAwi5ssQAaPc6clb9TxO+ kF2p87nhcWiDdYoLh92Q0IT+y2gQ2q6cPpow0=
- 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
Hi,
[~]> zsh --version
zsh 5.0.2 (x86_64-suse-linux-gnu)
# When ls is not aliased, life is good
# Pressing tab switches between completions
[~]> alias ls
ls=_ls
[~]> ls <tab> bin/
bin/ config/ Desktop/ Documents/ Downloads/
hacks/ public_html/ rpmbuild/
# Giving ls an alias pressing tab key shows all results on one line
[~]> alias ls="ls --color"
[~]> ls <tab> bin config Desktop Documents Downloads hacks
public_html rpmbuild
<tab> bin config Desktop Documents Downloads hacks public_html
rpmbuild
Messages sorted by:
Reverse Date,
Date,
Thread,
Author