From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=MAILING_LIST_MULTI, RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 25670 invoked from network); 6 Jun 2020 08:19:54 -0000 Received: from ns1.primenet.com.au (HELO primenet.com.au) (203.24.36.2) by inbox.vuxu.org with ESMTPUTF8; 6 Jun 2020 08:19:54 -0000 Received: (qmail 8757 invoked by alias); 6 Jun 2020 08:19:49 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: List-Unsubscribe: X-Seq: 46003 Received: (qmail 11027 invoked by uid 1010); 6 Jun 2020 08:19:48 -0000 X-Qmail-Scanner-Diagnostics: from out2-smtp.messagingengine.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.102.3/25828. spamassassin: 3.4.4. Clear:RC:0(66.111.4.26):SA:0(-2.6/5.0):. Processed in 1.137814 secs); 06 Jun 2020 08:19:48 -0000 X-Envelope-From: d.s@daniel.shahaf.name X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: none (ns1.primenet.com.au: domain at daniel.shahaf.name does not designate permitted sender hosts) X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduhedrudeghecutefuodetggdotefrodftvfcurf hrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecuuegr ihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenucfjug hrpeffhffvuffkjghfofggtgfgsehtjedttdertddvnecuhfhrohhmpeffrghnihgvlhcu ufhhrghhrghfuceougdrshesuggrnhhivghlrdhshhgrhhgrfhdrnhgrmhgvqeenucggtf frrghtthgvrhhnpeefudetgeevhedvhfetveetvdduleduieejueduueejjedtteeutdej hfdtgfeiteenucfkphepjeelrddujeeirdefledrieelnecuvehluhhsthgvrhfuihiivg eptdenucfrrghrrghmpehmrghilhhfrhhomhepugdrshesuggrnhhivghlrdhshhgrhhgr fhdrnhgrmhgv X-ME-Proxy: Date: Sat, 6 Jun 2020 08:19:09 +0000 From: Daniel Shahaf To: "O. simplex" Cc: "zsh-workers@zsh.org" Subject: Re: Solution: Bu report - unix/_gpg completion broken Message-ID: <20200606081909.33d488c5@tarpaulin.shahaf.local2> In-Reply-To: References: <20200515085324.63c6325f@tarpaulin.shahaf.local2> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit O. simplex wrote on Sat, 06 Jun 2020 06:38 +0000: > Sorry, there is some time since my report. > > The error is caused because i set shfileexpansion. > > Steps after run % zsh -f: > % autoload -U compinit > % compinit > % # if I try gpg aucompletion now, will work as expected > % # so you was right > % # now the detail in my personal config > % setopt shfileexpansion > % # if I try now, the error ( _gpg:176: \[]*} not found ) will appear > > Since I removed the option shfileexpansion from my zshrc, and gpg completion worked as expected. Thanks. This should fix it: diff --git a/Completion/compinit b/Completion/compinit index f0f8421df..f4ff270f7 100644 --- a/Completion/compinit +++ b/Completion/compinit @@ -159,6 +159,7 @@ _comp_options=( NO_shglob NO_warnnestedvar NO_warncreateglobal + NO_shfileexpansion ) # And this one should be `eval'ed at the beginning of every entry point