On Fri, Jun 09, 2006 at 09:47:22AM -0400, Ross Mohn wrote:
> Is this "wrong" thinking, or shouldn't I be able to choose to "view"
> multiple tags at the same time? For instance, $MODKEY-t, then type in
> "email+www" to view everything tagged either email or www? For that
> matter, maybe I'd want to select "email|www" for the union of those tags
> and "email&www" for the intersection of those tags.
We considered this already, but dropped the idea, because you
can achieve nearly the same with doing:
for i in `wmiir ls /client`; do
$tags=`wmiir read /client/$i/tags`
if expr $tags : 'email|www' then
echo -n join+$tags |wmiir write /client/$i/tags
fi
done
(Equivalent for removing the join+ tag...)
Regards,
-- Anselm R. Garbe ><>< www.ebrag.de ><>< GPG key: 0D73F361Received on Fri Jun 09 2006 - 16:13:35 UTC
This archive was generated by hypermail 2.2.0 : Sun Jul 13 2008 - 16:08:49 UTC