From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9689 invoked by alias); 30 Apr 2018 13:05:13 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: List-Unsubscribe: X-Seq: 23378 Received: (qmail 10994 invoked by uid 1010); 30 Apr 2018 13:05:13 -0000 X-Qmail-Scanner-Diagnostics: from aurora-borealis.phear.org by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(94.242.205.164):SA:0(-1.9/5.0):. Processed in 0.661688 secs); 30 Apr 2018 13:05:13 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_PASS, T_DKIM_INVALID autolearn=ham autolearn_force=no version=3.4.1 X-Envelope-From: eiro@phear.org X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | X-Virus-Scanned: amavisd-new at phear.org DKIM-Filter: OpenDKIM Filter v2.10.3 aurora-borealis.phear.org 3017410992 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=phear.org; s=20180217; t=1525093061; bh=Sx+38MEFbD3fAG1XUpyCg6xZhI556JuKfYWcJfLEG6Y=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=AUb51RN9qUNZ6FKr/waZU4sBpoKTTg/9L2w1n505SWDQCvAAtTDhu5OAcBs3+RO5b wq6bJRpOvtIyXqHsh+0qi5m4aSsZ+8DuT/8YvbGjS3pn5y2+T8n84vdmqqwzpp0wGa rP117bu4yYbgoty6dOe7S923LLLWJvlx4FUQ5ie8URIhV4d93CCZJFxPKE3j9Xb3x1 iDXr1gG5KqPrCuNK6JGSJQUvs8Gbf4nuYdosQAqtYvtjKa5EI3xOCeYBfv1/jpJ1Bt Fbz2DFlxHEQvzM4XxWA3rviyyfIb1wfGxTQXnXmC0r0C3YLscU95zlU3j37eL4TFbI xrZSrNQuyDGlA== Date: Mon, 30 Apr 2018 14:57:39 +0200 From: Marc Chantreux To: Bart Schaefer Cc: Zsh Users Subject: Re: zsh at perl conference and few questions Message-ID: <20180430125739.GB6979@prometheus.u-strasbg.fr> References: <20180422204849.GA30387@prometheus.u-strasbg.fr> <20180423110642.0e0a5ebe@camnpupstephen.cam.scsc.local> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.9.5 (2018-04-13) hello, > -- is definitely the bigger part of the picture. For one thing, it > would be ideal if true namerefs were working before namespaces were. by true namerefs, you talk about the ability yo create nested structures? something like nicknames=( joe bob henry ) local -A anonymous=( realname "John Doe" nicknames ${&nicknames} ) so $anymous[nicknames][2] == "bob" if it so, this would be awesome indeed ... regards marc