From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25100 invoked by alias); 13 Sep 2015 02:36:36 -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: 20550 Received: (qmail 13983 invoked from network); 13 Sep 2015 02:36:33 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.0 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=Ar+9fTRdi/D4rRX28EVwIsYg8iv9xEDun7RKcmHP6vw=; b=UTMq8H6qvL7HkMO9/P8hYnRiuY0ciLFfSFAbW0rKc6FoghPopaDiibzlmB8UsemiKt cvYc3JdiR/llz2SzpgNCqGjnjoGopTsWWKxINuBrGN0+KGyB/i/MdrA1DfEsv+VDyXv4 btp07ve65lqzF3vftcKYV1pcmfuShV60mP903iS0Mcdp5LnZZtqKXxUVaOCtK6TLwZ6v FCPzlkhwoGHv6OHrVn553ORYXvw1vPxVfbgqIGF/j3IgSKkkh4xkg7WLOsqdAXoeanoy g9a7xv1RNX3OI3iq4YTgQ/BJ0kuTsRcPeI+Rif9cUokZvEr9SiG1A1He6OJoE8IfWCmc 7EZA== X-Gm-Message-State: ALoCoQkCGHQS3N3M3bWqbnG6ToQHOAIDesdYyqx1m4PhIHFSNN55Ute44R5XS8reQDCfhiIsURct MIME-Version: 1.0 X-Received: by 10.152.43.197 with SMTP id y5mr6399101lal.103.1442111787707; Sat, 12 Sep 2015 19:36:27 -0700 (PDT) In-Reply-To: <55F4C61E.50703@eastlink.ca> References: <55F465E6.1040405@eastlink.ca> <2125131442086868@web14o.yandex.ru> <55F4930A.40608@eastlink.ca> <150912151040.ZM12254@torch.brasslantern.com> <55F4AF59.70606@eastlink.ca> <150912164339.ZM26555@torch.brasslantern.com> <55F4C61E.50703@eastlink.ca> Date: Sat, 12 Sep 2015 19:36:27 -0700 Message-ID: Subject: Re: Announce of Zsh Navigation Tools From: Bart Schaefer To: Ray Andrews Cc: Zsh Users Content-Type: text/plain; charset=UTF-8 On Sat, Sep 12, 2015 at 5:41 PM, Ray Andrews wrote: > I mean just ... > > /usr/local/share/zsh/site-functions > /usr/share/zsh/vendor-functions > /usr/share/zsh/vendor-completions > /usr/share/zsh/functions/Calendar > /usr/share/zsh/functions/Chpwd > /usr/share/zsh/functions/Completion (etc.) This is a result of a "configure"-time option set by whoever built the zsh package for your software package manager. For me, it's: zsh -fc 'print $ZSH_VERSION $fpath' 5.1.1 /usr/local/share/zsh/site-functions /usr/local/share/zsh/5.1.1/functions > ... one might imagine some shorthand '/usr/share/zsh/functions/**/' One might, but then the handling of $fpath would be inconsistent with $path, $module_path, $manpath, etc.; and more importantly, the order of entries in the array is signficant in case the same file name (with different implementation) appears in more than one directory. > ... it's a bit easier on the eye. You're not really ever intended to need to read that list once you've assigned it.