Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Something very weird just happened
- X-seq: zsh-workers 5334
- From: "Bart Schaefer" <schaefer@xxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxx
- Subject: Something very weird just happened
- Date: Wed, 10 Feb 1999 22:44:03 -0800
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
I ran `zed -f __find` where __find is from the new-completion-examples, and
a lot of the '-' characters inside [[ ... ]] expressions got doubled. I
suspect somebody forgot to tweak a pretty-printing routine to handle the new
condition codes?
Here's the output of `functions __find`:
__find () {
local _opre _oipre _oargs _ocur
_opre="$PREFIX"
_oipre="$IPREFIX"
_oargs=("$@")
_ocur="$CURRENT"
if [[ -mbetween --(ok|exec) \\\; ]]
then
do-complete "$@" || return 1
elif [[ --iprefix - ]]
then
complist -s 'daystart {max,min,}depth follow noleaf version xdev \
{a,c,}newer {a,c,m}{min,time} empty false {fs,x,}type gid inum links \
{i,}{l,}name {no,}{user,group} path perm regex size true uid used \
exec {f,}print{f,0,} ok prune ls'
PREFIX="$_opre"
IPREFIX="$_oipre"
argv=("$_oargs[@]")
CURRENT="$_ocur"
elif [[ --position 1 ]]
then
complist -g '. ..'
files -g '(-/)'
elif [[ -mcurrent --1 -((a|c|)newer|fprint(|0|f)) ]]
then
files
elif [[ -current --1 -fstype ]]
then
complist -k '(ufs 4.2 4.3 nfs tmp mfs S51K S52K)'
elif [[ -current --1 -group ]]
then
complist -k groups
elif [[ -current --1 -user ]]
then
complist -u
fi
}
--
Bart Schaefer Brass Lantern Enterprises
http://www.well.com/user/barts http://www.brasslantern.com
Messages sorted by:
Reverse Date,
Date,
Thread,
Author