From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7189 invoked by alias); 17 May 2017 22:20:47 -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: X-Seq: 22703 Received: (qmail 26647 invoked from network); 17 May 2017 22:20:47 -0000 X-Qmail-Scanner-Diagnostics: from mail-vk0-f48.google.com 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(209.85.213.48):SA:0(-2.8/5.0):. Processed in 1.233513 secs); 17 May 2017 22:20:47 -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=-2.8 required=5.0 tests=RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2,SPF_PASS,T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.1 X-Envelope-From: schaefer@brasslantern.com X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: pass (ns1.primenet.com.au: SPF record at _netblocks.google.com designates 209.85.213.48 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern-com.20150623.gappssmtp.com; s=20150623; h=from:message-id:date:in-reply-to:comments:references:to:subject :mime-version; bh=JgVgzNcJXCmpX124iAbPUAg+6/R/hFNelqjpLHaSj1s=; b=xoI0kHc6yyuQ+5MfXycR/3ciplQXtq+suR8Ma+Lvz9T+QrToBWlfob3vE9lP2t0abF Ip5km+ec7v3oDC8ydEHc4/xhn05m9oeDrmRDcUxqmmZ8HIhoBOPx8v5KUf97kFaZQ0as diXBvZJaeINZSMDmd76w37XKC5QQf+iK49kctolvV/iqP6VfTUHFPfO7Fwccm6Iy8gW9 mz1btjzK2pMKxzFZkY3x4OUTq9oe/HbH8s9aIVbgIWHMynPdToOqmJKVBldPSjE+8lQS J1Cj77MvTt/71C+Afo4iVK3U6WWAjasoDRlmpYl5RI0fiHcqW06gQ+aNqEohL18M7Y51 ytmw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:message-id:date:in-reply-to:comments :references:to:subject:mime-version; bh=JgVgzNcJXCmpX124iAbPUAg+6/R/hFNelqjpLHaSj1s=; b=NY9d/bBOAntPyoU+VdoSJIVj8DbjeAOR75K/qY4HUvJl1B7wtr02reirlGeZqTTdx0 wnEt2y1fWVkw+vKKl9Wp5ckLJrRyZvQpF2zwDk6RX4BBoQgnuLeL6AxJ/SEbh/cEB2Iw PAsHoIoMEVhZCtZj0bg8uHdF73GRSK3g/1HILyX34yf9T4oVhwIxA2NHETdTG9CviMJ3 659J9Tp9B6QOyxlOrJGhNOPaNNQv8uboJ2onIOEyVLV+Y39zgY9HGU1qaTDdDDFVruWA IRkyhieEDiPcD9jcKhYuVLItK2bZsQi3zpyi1Ypn1791HSQU7w6/DpePrfF1DYe51fOY Scjg== X-Gm-Message-State: AODbwcD6TzzfFWuRQhMsXjcPk5+jx9CSutSWlKuELXrTn+KD0UiUDrHp 2uq1Co/0f83hLx1fJg0= X-Received: by 10.31.86.193 with SMTP id k184mr493306vkb.127.1495059639475; Wed, 17 May 2017 15:20:39 -0700 (PDT) From: Bart Schaefer Message-Id: <170517152108.ZM27724@torch.brasslantern.com> Date: Wed, 17 May 2017 15:21:08 -0700 In-Reply-To: <876481495050379@web31g.yandex.ru> Comments: In reply to "Nikolay Aleksandrovich Pavlov (ZyX)" "Re: command not found: _arguments" (May 17, 10:46pm) References: <876481495050379@web31g.yandex.ru> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: "zsh-users@zsh.org" Subject: Re: command not found: _arguments MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On May 17, 10:46pm, Nikolay Aleksandrovich Pavlov (ZyX) wrote: } } 17.05.2017, 22:09, "Guilherme Furtado Pacheco" : } > I'm having trouble with completions for some commands. } } I get similar problems after zsh update. If this were only an fpath problem, the error would more likely be zsh: _arguments: function definition file not found Since it is "command not found" it means that some of the completion functions are not being found by compinit. Either compinit needs to be re-run with the corrected fpath, or more likely the ~/.zcompdump file has been incorrectly populated. rm ~/.zcompdump* and then try starting up your shell again. If the error persists, you have somehow acquired a version mismatch between the zsh binary that is being run and the functions library that has been installed. What is the value of $SHELL in a shell where completion works compared to one where it does not?