Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: PATCH: _groups and _condition
- X-seq: zsh-workers 10099
- From: "Bart Schaefer" <schaefer@xxxxxxxxxxxxxxxxxxxxxxx>
- To: Oliver Kiddle <opk@xxxxxxxxxxxxx>, Zsh workers <zsh-workers@xxxxxxxxxxxxxx>
- Subject: Re: PATCH: _groups and _condition
- Date: Sun, 12 Mar 2000 22:34:01 +0000
- In-reply-to: <38CBB81A.EC87E0AA@xxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
- References: <38CBB634.816D2213@xxxxxxxxxxxxx> <38CBB81A.EC87E0AA@xxxxxxxxxxxxx>
On Mar 12, 3:30pm, Oliver Kiddle wrote:
} Subject: Re: PATCH: _groups and _condition
}
} Sorry, I yet again forgot to turn off word-wrap before sending a patch.
Your _groups is out of date -- my copy of _groups has
... $(_call groups ypcat group.byname) ...
And:
} --- Compoletion/Base/_condition.bak Sun Mar 12 06:42:06 2000
} +++ Compoletion/Base/_condition Sun Mar 12 06:46:23 2000
^^^
I don't have this directory. :-)
Here's a cleaned-up patch. I don't have ypcat, so I can't test it ...
Index: Completion/Base/_condition
===================================================================
@@ -4,7 +4,7 @@
if [[ "$prev" = -o ]]; then
_tags -C -o options && _options
-elif [[ "$prev" = -([no]t|ef) ]]; then
+elif [[ "$prev" = -([a-hkprsuwxLOGSN]|[no]t|ef) ]]; then
_tags -C "$prev" files && _files
else
_alternative 'files:: _files' 'parameters:: _parameters'
Index: Completion/User/_groups
===================================================================
@@ -1,13 +1,14 @@
#compdef newgrp
-local expl groups
+local expl groups tmp
_wanted groups expl group || return 1
if ! zstyle -a ":completion:${curcontext}:" groups groups; then
(( $+_cache_groups )) ||
- if (( ${+commands[ypcat]} )); then
- : ${(A)_cache_groups:=${${(s: :)$(_call groups ypcat group.byname)}%%:*}} # If you use YP
+ if (( ${+commands[ypcat]} )) &&
+ tmp=$(_call groups ypcat group.byname); then
+ : ${(A)_cache_groups:=${${(f)tmp}%%:*}} # If you use YP
else
: ${(A)_cache_groups:=${${(s: :)$(</etc/group)}%%:*}}
fi
--
Bart Schaefer Brass Lantern Enterprises
http://www.well.com/user/barts http://www.brasslantern.com
Messages sorted by:
Reverse Date,
Date,
Thread,
Author