Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Making *<tab> show possibilities but not expand?
- X-seq: zsh-users 15690
- From: Silas Silva <silasdb@xxxxxxxxx>
- To: zsh-users@xxxxxxx
- Subject: Making *<tab> show possibilities but not expand?
- Date: Thu, 6 Jan 2011 11:51:52 -0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:mail-followup-to:mime-version:content-type :content-disposition:user-agent; bh=gxgBmlb0XNiUKzpifmgHkfzKfpnr9MAABN0kpOzOWVE=; b=ez7tQfRRNSkoEZCObTF22TxM+uS2SHBk6UH+9aPZaTHCTq2TOjBAh0feg9IcYXyCoE Fcb6545EYx3A1036QXrx6LJHN0xlyPJ3/G+nsHNjNoi9U5kN1ZI6lZWzVJhgLFY4+4j6 gjNQQfj9+bWj/ZQDPDkTcFbGOPSKMCp0celck=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:mail-followup-to:mime-version :content-type:content-disposition:user-agent; b=gol8jXvtlEjpEBFYq5WzEmh85egT/rCoaBphD7jvTxCscQFcWgxnTt4zWJaYT8mgPh Z8z/pT2r2mPc/GpSpE7VrE1eumUfdtmXE5jQit8aKIAGHV/jDGCD6rT7OuB96818jrRr KSmH1hzJb3aKtB5usru0Bu2CoTxA+AzAG/bpI=
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- Mail-followup-to: zsh-users@xxxxxxx
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
Hi all!
BSD (more specifically, NetBSD) ksh has a very nice behaviour that I
have been setup in zsh and couldn't. Maybe you can help me...
Think of this situation:
$ ls /tmp/*
I don't want * to expand to all files in /tmp, but to show me a list of
possible matches instead, likewise:
$ ls /tmp/a*b
Should just show me a list of all matches, but don't expand it.
After playing a bit with zstyle, I discovered that I needed to:
bindkey '^i' complete-word
zstyle ':completion:*' completer _a_nice_completer
right?
I took a glance at the Zsh user guide and man pages and I couldn't get
the meaning of all this. I shall study more, but I'd like to ask you
for directions... Any tips?
Thanks!
--
Silas Silva
Messages sorted by:
Reverse Date,
Date,
Thread,
Author