Code Monkey home page Code Monkey logo

zgen's People

Contributors

belak avatar davidparsson avatar denysdovhan avatar docwhat avatar elliottcable avatar forivall avatar hackaugusto avatar hvindin avatar itiut avatar knakayama avatar m42e avatar mul14 avatar n4m3z avatar navrudh avatar ngg avatar ogarcia avatar outcoldman avatar revolter avatar sevanteri avatar superbrothers avatar svenstaro avatar tarjoilija avatar unixorn avatar vifon avatar yous avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

zgen's Issues

Local repositories are not loaded if they are submodules

Trying to load a local repository fails, if it is a submodule of another repository.

This is probably because zgen-get-clone-url() checks for the presence of a directory named .git, which in the case of submodules is a file.

Sourcing Zgen unnecessarily

It shaves a bit of time to avoid sourcing zgen when you don't need to. Since that's kind of the point of this project, my .zshrc includes something like this:

if ! source "$HOME/.zgen/init.zsh"; then
    source "${HOME}/dots/zgen/zgen.zsh"
    #  Register plugins
    zgen save
    zgen init
fi

Maybe it would make sense to split out most of the generation logic, and source a lighter file that includes only zgen saved and zgen reset?

If there's no reason this hasn't already been done, I would be happy to do it.

Using zgen as a submodule

At first I added zgen to my dotfiles as a submodule and link it to my home directory:

git submodule add https://github.com/tarjoilija/zgen.git
ln -s /path/to/dotfiles/zgen ~/.zgen

After I initialize zgen, I realized it clone the repositories to its root directory like this:

~/.zgen
|-+ _zgen
|-+ init.zsh
|-+ robbyrussell/
| `-+ oh-my-zsh-master/
|-+ zcompdump
|-+ zgen.zsh
`-+ zsh-users/
  `-+ zsh-syntax-highlighting-master/

Note that init.zsh and zcompdump are also generated. It makes submodule dirty, so I decided to link _zgen and zgen.zsh in my dotfiles to the ~/.zgen/_zgen and ~/.zgen/zgen.zsh repectively. And then, when I execute zgen selfupdate, it says zgen is not running from a git repository, so it is not possible to selfupdate. Any think?

.zgen at custom path and multi user

Despite source "/custom/.zgen/zgen.zsh" in .zshrc .zgen is still created at ~/.zgen.
Is it possible to completely move anything zgen related to the custom path? And would it be ok to use this custom .zgen path for multiple users?

Using OMZ plugins without loading all of OMZ

Is this possible? There are a few plugins I can't live without, but when I load all of OMZ I get all these extra aliases and stuff I neither need nor want.
Obviously I could unalias all of those, but there seems like there should be a better solution.

Different behaviour on first load (vs static init script), so custom prezto prompt not loaded

Hi, first of all thanks for zgen, moving from antigen and then from oh-my-zsh to prezto was super easy and now everything is faster.

My custom prezto prompt is not loading when the static init script is not generated. I think it is because, when generating the script, prezto and the modules are loaded in place, while the fpath is not modified until the end after generating the script. I can workaround this by modifying fpath myself, but I'd love to keep it clean and just use zgen load.

I guess there are 2 possible solutions:

  1. Modifying fpath in place in -zgen-add-to-fpath and then it's not necessary to do it in zgen-apply
  2. Not loading stuff in place and once the script is generated source it

Let me know what you think.

zgen load only supports github

I have one of my repos on bitbucket that I wish to load with zgen. Currently the only way to accomplish this is to clone the repository manually and using zgen load with the path option.

It would be very useful if we could define git repository paths to checkout arbitrary locations. Github is just one location which can host ZSH scripts.

Lots of `zsh -i` are spawned, CPU pegged to 100%.

Upon doing a zgen reset today, and restarting the shell, zgen hangs and doesn't seem to make no progress (no ouput after 15 minutes). Checking ps, there are 195 instances of zsh -i. pkill zsh kills them and gives me a prompt, but the same happens every time I open a shell now.

Zgen won't load bullet-train-oh-my-zsh-theme

In the readme for bullet-train-oh-my-zsh-theme, it states that you can install using zgen by running:

zgen load caiogondim/bullet-train-oh-my-zsh-theme

I can see that in my .zgen, the repository has been cloned, however when a new terminal is opened, this message appears:

/home/john/.zgen/robbyrussell/oh-my-zsh-master/oh-my-zsh.sh:source:96: no such file or directory: /home/john/.zgen/robbyrussell/oh-my-zsh-master/themes/bullet-train.zsh-theme

This makes me think that the script which is being generated is just looking for oh-my-zsh somewhere in the string url and attributing bullet-train-oh-my-zsh-theme as an oh-my-zsh theme incorrectly.

Zgen no longer works on zsh v4.3.10

Hi,

I use zgen along with zsh 4.3.10 (x86_64-redhat-linux-gnu) (unfortunately non upgradeable). I just updated the version I'm using, and it's no longer working. The incompatibility was added in 43a9b47, more specifically here.

The flag q- is not supported on zsh 4.3.10. Would it be possible to restore the old q flag for backward compatibility?

Thanks!

Weird behaviour with tmux

So, tmux crashes - or at least involuntarily exists on behalf of me - whenever I source zgen/zgen.zsh. I have removed everything else from my .zshrc, so it's definitely related to calling source zgen/zgen.zsh.

More symptoms: tmux will open fine at first, but when I add a split, the split just dies right after. Sometimes, it will succeed creating the split, but creating another one may tear the whole thing down again. Tmux would then exit and print [exited]. The behaviour that surprises me most is that, say it managed to create 3 splits, closing one of them would bring down the entire tmux run.

My zgen install is up-to-date, I am on OSX (iTerm2) and zsh 5.0.2 (from brew).

Failed to load multiple zsh-files in single repo

I'm trying to load pure zsh-theme. It contains two primary files with different extensions:

  • async.zsh
  • pure.plugin.zsh โ†’ pure.zsh

The problem is that with these checkings, zgen finds only pure.plugin.zsh and loads only this file, without async.zsh. It jumps in this condition and ignores all of following ones:

# ... L364-L366
 elif -zgen-path-contains "${location}" ".plugin.zsh" ; then
        for script (${location}/*\.plugin\.zsh(N)) -zgen-source "${script}"
# ...

That's why I get this in my init.zsh:

# ...
source "/Users/denysdovhan/.zgen/sindresorhus/pure-master/pure.plugin.zsh"
# ...

# ...

Removing Plugins

Hello, I just found this and switched over from oh-my-zsh. I love the light weight aspect of this approach. I've been playing around with this all day, and I'm befuddled in regard to one thing. When removing plugins is the plugin manager supposed to delete the unwanted plugin directory from ~/.zgen?

I've installed a couple plugins that I ended up not wanting to use. To remove them I've simply deleted the line zgen load someUser/somePlugin from the ~/.zshrc, and then run zgen reset from the command line, followed by exec zsh.

This removes the plugin from the init.zsh file, but it leaves behind the directory and bits of the plugin being removed. Is there a way to have zgen clean out the bits and directories belonging to deleted plugins?

vim mode plugin

Whenever I try to add this https://github.com/sharat87/zsh-vim-mode to loaded pluings, I get unusably slow prompt loading speed (like just pressing enter a few times). In my zshrc it looks like so

zgen loadall <<EOPLUGINS
    sharat87/zsh-vim-mode
EOPLUGINS

however, I can copy the plugin's whole contents directly into my zshrc and it works fine.

NVM can't find SHA1 using Zgen

I've been trying to use Zgen to manage Zsh and NVM to manage node, but whenever I install Zgen and try to get nvm to install a new version of node I get:

######################################################################## 100.0%
nvm_checksum:5: command not found: sha1
Checksums do not match.
Binary download failed, trying source.
######################################################################## 100.0%
nvm_checksum:5: command not found: sha1
Checksums do not match.
nvm: install v0.11.16 failed!

Is there something I need to do to point NVM in the right direction?

Function, zgen-load, does not load files with extension ".plugin.zsh".

I would like to include the autojump plugin from oh-my-zsh. The autojump plugin folder contains a single file, autojump.plugin.zsh. Unfortunately, however, when I list autojump in my ~/.zshrc file the autojump.plugin.zsh script does not get invoked. As a result I cannot use the autojump utility at all. :(

~/.zshrc is as follows:

#!/usr/bin/env zsh

# load zgen
source ~/Code/opensrc/zgen/zgen.zsh

# check if there's no init script
if ! zgen saved; then
    echo "Creating a zgen save"

    zgen oh-my-zsh

    # plugins
    zgen oh-my-zsh plugins/autojump

    # theme
    zgen oh-my-zsh themes/ys

    # save all to init script
    zgen save
fi

I'm pretty sure issue is to do with the logic of the zgen-load() function, within the zgen.zsh file. The below diff was enough for me to fix the problem in my setup.

screenshot 2015-03-10 15 06 09

However, I am not yet offering a pull request as I am uncertain as to the ramifications of this change ... If, as is the case for the brew plugin, an oh-my-zsh plugin folder contains both a brew.plugin.zsh file and the a _brew file, does this change prevent the _brew completions file from being added to fpath if the brew.plugin.zsh file is run?

For completeness, I am working with a clean install for zgen and my ZSH version:

$ zsh --version
zsh 5.0.7 (x86_64-apple-darwin14.0.0)

Make zgen work with prezto

prezto is a pretty popular framework alternative to omz. It should be pretty easy to add support for it.

Sourcing zgen binds Alt-/

The following lines in zgen.zsh re-bind Alt-/

ZGEN_AUTOLOAD_COMPINIT=${ZGEN_AUTOLOAD_COMPINIT:-true}
if $ZGEN_AUTOLOAD_COMPINIT; then
    autoload -U compinit
    compinit -d "${ZGEN_DIR}/zcompdump"
fi

Specifically it's "compinit" that does that. Either compinit needs to be stopped from doing this, or the bindkey should be saved and then restored, after doing compinit

chpwd hooks can break ZGEN_SOURCE path

It seems $ZGEN_SOURCE is computed using cd+pwd. It will trigger all previously set chpwd_functions which can generate additional output besides the expected pwd. In my case this is the result:

% echo $ZGEN_SOURCE
/home/vifon/.zgen
% echo $ZGEN_SOURCE | cat -v
^[]777;cwd-spawn;path;/home/vifon/.zgen^G^[]777;cwd-spawn;hostname;vifon-laptop^G/home/vifon/.zgen

These escape codes normally would get interpreted by my terminal but in this case they get mixed up with the pwd. It prevents zgen selfupdate from running and can probably cause many other issues (though I noticed only this one).

It can either be resolved by calling cd with -q (which suppresses the hooks) or by avoiding calling cd entirely. I'll post a PR with the second solution in a few minutes but I'm mentioning the former solution because there may be another reason to use cd+pwd that I'm missing.

zgen traverses all subdirectories (including .git directory) when updating.

On my machine with zsh 5.3.1 and the latest master for zgen I get the following output from a zgen update:

$ printf "ZSH Version: $(zsh --version)\nZgen Version: "; GIT_DIR=~/.zgen/.git git rev-parse HEAD; zgen update 2>&1 | sed -e "s#$USER#username#g" 
ZSH Version: zsh 5.3.1 (x86_64-redhat-linux-gnu)
Zgen Version: ffd3f50addf7a0106d9ea199025eb99efbb858f4
-- zgen: Updating '/home/username/.zgen/ascii-soup/zsh-url-highlighter-master/' ...
Current branch master is up to date.
-- zgen: Updating '/home/username/.zgen/.git/branches/' ...
fatal: This operation must be run in a work tree
-- zgen: Updating '/home/username/.zgen/.git/config' ...
zgen-update:cd:3: not a directory: /home/username/.zgen/.git/config
-- zgen: Updating '/home/username/.zgen/.git/description' ...
zgen-update:cd:3: not a directory: /home/username/.zgen/.git/description
-- zgen: Updating '/home/username/.zgen/.git/FETCH_HEAD' ...
zgen-update:cd:3: not a directory: /home/username/.zgen/.git/FETCH_HEAD
-- zgen: Updating '/home/username/.zgen/.git/HEAD' ...
zgen-update:cd:3: not a directory: /home/username/.zgen/.git/HEAD
-- zgen: Updating '/home/username/.zgen/.git/hooks/' ...
fatal: This operation must be run in a work tree
-- zgen: Updating '/home/username/.zgen/.git/index' ...
zgen-update:cd:3: not a directory: /home/username/.zgen/.git/index
-- zgen: Updating '/home/username/.zgen/.git/info/' ...
fatal: This operation must be run in a work tree
-- zgen: Updating '/home/username/.zgen/.git/logs/' ...
fatal: This operation must be run in a work tree
-- zgen: Updating '/home/username/.zgen/.git/objects/' ...
fatal: This operation must be run in a work tree
-- zgen: Updating '/home/username/.zgen/.git/packed-refs' ...
zgen-update:cd:3: not a directory: /home/username/.zgen/.git/packed-refs
-- zgen: Updating '/home/username/.zgen/.git/refs/' ...
fatal: This operation must be run in a work tree
-- zgen: Updating '/home/username/.zgen/unixorn/autoupdate-zgen-master/' ...
Current branch master is up to date.
-- zgen: Updating '/home/username/.zgen/zsh-users/zsh-autosuggestions-master/' ...
Current branch master is up to date.
-- zgen: Updating '/home/username/.zgen/zsh-users/zsh-completions-master/' ...
Current branch master is up to date.
-- zgen: Updating '/home/username/.zgen/zsh-users/zsh-history-substring-search-master/' ...
Current branch master is up to date.
-- zgen: Updating '/home/username/.zgen/zsh-users/zsh-syntax-highlighting-master/' ...
Current branch master is up to date.
-- zgen: Deleting `/home/username/.zgen/init.zsh` ...

This seems to be caused by this bit of zgen-update:
for repo in "${ZGEN_DIR}"/*/*; do

I've fixed this in my own fork of zgen by changing that line to:
for repo in "${ZGEN_DIR}"/(^.git)/*; do

which will match alldirectories in the zgen_dir that don't match '.git'

I'll create a pull request shortly, but I'd be interested to know if others are seeing the same issue.

prezto syntax-highlighting not working

When using the following command, the generated code in init.zsh is wrong:

  zgen prezto 'syntax-highlighting' highlighters \
    'main' \
    'brackets' \
    'pattern' \
    'root'

becomes...

zstyle ':prezto:module:syntax-highlighting' highlighters 'main brackets pattern root'

PS: It looks like it was working on the @m42e fork before the #40 merge, not sure if there was any change on the merged code.

How to install?

The readme lacks explicit documentation on how to actually add zgen to zsh.
A short manual would be quite helpful.

slow init time

It's really slow loading a new shell with this.

Here's a zprof:

-----------------------------------------------------------------------------------
 1)    1         850.23   850.23   99.98%    595.87   595.87   70.07%  zgen-init
 2)    2         127.97    63.99   15.05%    105.57    52.78   12.41%  compinit
 3)    2          57.16    28.58    6.72%     57.16    28.58    6.72%  _zsh_highlight_bind_widgets
 4)    1          49.32    49.32    5.80%     48.85    48.85    5.74%  _zsh_highlight_load_highlighters
 5)    2          22.40    11.20    2.63%     22.40    11.20    2.63%  compaudit
 6)    2           9.10     4.55    1.07%      9.10     4.55    1.07%  env_default
 7)    2           6.47     3.24    0.76%      6.47     3.24    0.76%  grep-flag-available
 8)    1           2.17     2.17    0.26%      2.17     2.17    0.26%  colors
 9)    2           1.05     0.52    0.12%      1.05     0.52    0.12%  is-at-least
10)    3           0.90     0.30    0.11%      0.90     0.30    0.11%  compdef
11)    2           0.70     0.35    0.08%      0.70     0.35    0.08%  add-zsh-hook
12)    1           0.15     0.15    0.02%      0.11     0.11    0.01%  zgen
13)    1           0.04     0.04    0.00%      0.04     0.04    0.00%  zgen-saved

And here's my zgen setup

source ${HOME}/.zgen/zgen.zsh

# check if there's no init script
if ! zgen saved; then
  echo "Creating a zgen save"

  # Load robbyrussell's oh-my-zsh's library
  zgen oh-my-zsh

  # Plugins from robbyrussell's oh-my-zsh
  zgen oh-my-zsh plugins/tmux
  zgen oh-my-zsh plugins/tmuxinator
  zgen oh-my-zsh plugins/vagrant
  zgen oh-my-zsh plugins/bundler
  zgen oh-my-zsh plugins/pip
  zgen oh-my-zsh plugins/python
  zgen oh-my-zsh plugins/virtualenv
  zgen oh-my-zsh plugins/command-not-found
  zgen oh-my-zsh plugins/history-substring-search

  # Github plugins
  zgen load rupa/z
  zgen load zsh-users/zsh-syntax-highlighting
  zgen load zsh-users/zsh-completions src
  zgen load kennethreitz/autoenv

  # Load theme
  zgen oh-my-zsh themes/ys

  # Tell zgen that you're done
  zgen save
fi

Use a standard open source license

Rather than use a custom license, I recommend going with one of the standard open source licenses.

The BSD 2-clause license covers what you've listed here, and because it's a standard license, it's a lot easier for people to work with if they want to make contributions from a work account.

${ZGEN_LOADED} and ${ZGEN_COMPLETIONS} aren't wiped after loading ${ZGEN_INIT}

I noticed while I was trimming my plugin list today that ones I thought I'd deleted were still present in ${ZGEN_INIT} after I ran zgen save. I realized that ${ZGEN_LOADED} and ${ZGEN_COMPLETIONS} weren't emptied.

There either needs to be a convenient way to reset ${ZGEN_LOADED} and ${ZGEN_COMPLETIONS} when you're creating a new save file, or we should just blank them at the end of ${ZGEN_INIT}. I'm in favor of just automatically blanking them.

Using external theme add'l doc for README

Very good framework, much faster than others-- thank you.

Suggestion to add to README.md so it is explicitly clear.

Load external theme:
zgen load bhilburn/powerlevel9k powerlevel9k.zsh-theme

๐Ÿ‘

Misleading error message on missing oh-my-zsh plugin

oh-my-zsh recently renamed plugins/colored-man to plugins/colored-man-pages.

Running zgen oh-my-zsh plugins/colored-man gives the following error:

zgen: Failed to load /home/user/.zgen/robbyrussell/oh-my-zsh-master

I would expect the error to specify the plugin, not just the repo.

Support Zsh plugin standard?

Hello!
There's attempt of mine to write down and clarify Zsh plugin standard. It follows Oh-My-Zsh unwritten standard, but solves a few issues like:

  1. Incompatibility with *_argzero options like no_function_argzero.
  2. Lack of indicator that plugin is loaded by a plugin manager.
  3. No help from plugin manager in handling of dependencies.
  4. No support for plugin unloading.
  5. etc.

For a plugin manager, a short list of needed changes is:

  1. Set ZERO parameter at plugin load time, equal to path to sourced script ($0 from within the script).
  2. Set LOADED_PLUGINS array to hold strings "user/plugin" of loaded plugins and the plugin being currently loaded.
  3. Set ZPFX to a prefix-like directory (/usr, /usr/local, /opt are examples of such directories). Zplug and Zplugin can do build-hooks and run Makefiles, providing ZPFX allows consistent and short hook-code.
  4. Call *_unload function if it's provided, if user requests plugin unload.

Zgen architecture is about generating script with sequence of source commands. With above commands, the script could look like:

typeset -ga LOADED_PLUGINS  # typeset, in case user turns on `warn_create_global`
typeset -g ZERO ZPFX="$HOME/.zgen/polaris"

LOADED_PLUGINS+=( "geometry-zsh/geometry" )
ZERO="$HOME/.zgen/.../geometry.plugin.zsh"
fpath+=( "$HOME/.zgen/.../geometry-zsh" )
source $HOME/.zgen/.../geometry.plugin.zsh

LOADED_PLUGINS+=( "zsh-users/zsh-autosuggestions" )
ZERO="$HOME/.zgen/.../zsh-autosuggestions.plugin.zsh"
fpath+=( "$HOME/.zgen/.../zsh-autosuggestions" )
source $HOME/.zgen/.../zsh-autosuggestions.plugin.zsh

...

I've sent a patch to Zsh and it was accepted, it uses realloc() for array appends and is faster than previous code anywhere in 10 to 1000 times, so I think there's no pain of lowering zgen's excellent performance. ZERO will release programmers' will to do tricks. So for example zgen could issue:

...
LOADED_PLUGINS+=( "geometry-zsh/geometry" )
ZERO="$HOME/.zgen/.../geometry.plugin.zsh"
fpath+=( "$HOME/.zgen/.../geometry-zsh" )
eval "$(<$HOME/.zgen/.../geometry.plugin.zsh)"
...

$ZPFX hints that despite performance-centered architecture of Zgen, it can still do build-time (installation, update) hooks and make use of $ZPFX (to run e.g. make PREFIX=$ZPFX install).

Does this make sense to you? Maybe you have ideas for extensions or modifications for the standard? It is located here:

http://zdharma.org/Zsh-100-Commits-Club/Zsh-Plugin-Standard.html

PRs can be submitted here.

Add support for upstream repos

zgen.zsh allows the user to use his own prezto and OMZ forks by using ZGEN_PREZTO_REPO and ZGEN_OH_MY_ZSH_REPO. But then you have a problem with upstream, where you have to manually add it and update it.

It would be nice to have some sort of mechanism, to keep track and update from upstream. Maybe having these ZGEN_PREZTO_REPO_UPSTREAM=sorin-ionescu and ZGEN_OH_MY_ZSH_REPO_UPSTREAM=robbyrussell variables defined in zgen.zsh.
If the user overrides them (to empty string or undefines them), then updates would be done from remote origin forks. Otherwise from remote upstream.

Just `zgen load` should display help message

Without any arguments, zgen load tries to clone non-existing repository.

$ zgen load
Cloning into '/home/user/.zgen/./master-master'...
fatal: repository 'https://github.com/.git/' not found
zgen: Failed to load /home/user/.zgen/./master-master

Sourcing zgen launches multiple zsh login ttys

I've noticed that source "${HOME}/.zgen/zgen.zsh" launches multiple login ttys on my machine:

โฏ ps
  PID TTY           TIME CMD
 2239 ttys001    0:00.02 /Applications/iTerm.app/Contents/MacOS/iTerm2 --server /usr/bin/login -fpl username /Applications/iTerm.app/
 2241 ttys001    0:00.78 /usr/local/bin/zsh -l
 2853 ttys002    0:00.02 /usr/local/bin/zsh -l

is that normal?

zgen breaks if CLOBBER is unset

I keep setopt noclobber in my zshrc

This breaks the save function because zgen-reset removes ${ZGEN_INIT} if it exists, then tries to write to it with >> which causes an error.

You probably want >! for the first line, which removes the need for the zgen-reset call as a side effect.

The commands display themselves on the next line when export TERM=screen-256color and when oh-my-zsh is loaded

kreedz@debian:~% export TERM=screen-256color
export%  
kreedz@debian:~% echo $TERM
echoscreen-256color
kreedz@debian:~% cd
cd%
kreedz@debian:~% pwd
pwd/home/kreedz
kreedz@debian:~% export TERM=xterm-256color
export%
kreedz@debian:~% cd
kreedz@debian:~% pwd
/home/kreedz

.zshrc:

source ~/.zgen/zgen.zsh
if ! zgen saved; then
    zgen oh-my-zsh
    zgen save
fi

I've tried with zplug and it doesn't have this problem.

Completion problems

With the changes introduced in commit [ca19ec2] the completion system is broken.

If you do zgen-init before fpath=($ZGEN_SOURCE $fpath) (the last two lines in the script) the completions of zgen never be loaded cause compinit is executed before set fpath.

In other way, I think that if the user set a ZGEN_CUSTOM_COMPDUMP this file must be deleted on zgen-reset and zgen-update cause if you don't make this the completions never be updated.

How does this compare to antigen?

It might be useful to write up a small motivation to explain to users why they might want to use zgen instead of antigen. I, for one, do not currently understand the difference and why I might want to use zgen.

zgen themes aren't working properly.

Hello, I'm attempting to edit the theme for zgen, and in my .zshrc file I have:

zgen oh-my-zsh themes/agnoster

But it still returns to the "arrow" theme, even after closing and reopening the session.

Thanks,
nixpower

Every `source .zshrc` add the same values (repeat them) into $fpath

I've noticed that ${fpath} starts to repeat (equal to the number of sourcing) the paths that mentioned in the ~/.zgen/init.zsh. It's normal?
~/.zgen/init.zsh.:

# ### Plugins & Completions
fpath=(/home/kreedz/.zgen/zsh-users/zsh-autosuggestions-develop / ${fpath})

.zshrc:

source ~/.zgen/zgen.zsh
if ! zgen saved; then
    zgen load zsh-users/zsh-autosuggestions zsh-autosuggestions.zsh develop
    zgen save
fi

So if I do source .zshrc thrice than the $fpath will contain next paths (repeated three times):

/home/kreedz/.zgen/zsh-users/zsh-autosuggestions-develop
/home/kreedz/.zgen

Doing zgen reset before every source prevents that.

zgen update fails with "no matches found"

Environment

ZGEN: commit ffd3f50
ZSH: zsh 5.4.2 (x86_64-unknown-linux-gnu) (Arch linux)

Description

I have an error I have not seen before. A fresh zgen installation gives me this:

me@mine % zgen update
zgen-update:1: no matches found: /home/abk/.zgen/*/*

I tracked the error message to the first line in zgen-update:

me@mine % which zgen-update
zgen-update () {
	for repo in "${ZGEN_DIR}"/*/*              # ********** THIS LINE **********
	do
		-zgpute "Updating '${repo}' ..."
		(
			cd "${repo}" && git pull && git submodule update --recursive
		)
	done
	zgen-reset
}

As demonstrated here:

me@mine % for repo in ./*/* ; do echo $repo ; done 
zsh: no matches found: ./*/*
1 me@mine %

A valid replacement could be:

me@mine % for repo in ./*(/) ; do echo $repo ; done 
./robbyrussell

the official zsh intro document lists my "valid replacement" as a "qualifiers" example, but I did not find an explanation for the */* form you're using right now on the first glance.

I have no clue if arch linux is too new here, if zsh changed, if I did something wrong, yet it did work before and after a fresh system install yesterday it stopped (or I didn't notice before).

Those are my setopts:

autocd
autopushd
nobeep
completeinword
extendedglob
extendedhistory
histignorealldups
histignorespace
nohup
incappendhistory
interactive
interactivecomments
kshglob
longlistjobs
monitor
pushdignoredups
sharehistory
shinstdin
zle

Why is zgen invoking `zcompinit`?

So, in trying to speed up my shell launch-times, I discovered that one of the slowest parts of my boot is zgen invoking zcompinit without -u or -C or anything:

0 /Users/ec/.zshrc:9> [ -f /Users/ec/.profile.local ']'
44 24 compinit:484> . /Users/ec/.zcompdump
81 12 /Users/ec/Library/System Repo/Source/zgen/zgen.zsh:467> ZSH=/Users/ec/.zgen/robbyrussell/oh-my-zsh-master 
150 8 /Users/ec/.zgen/rimraf/k-master/k.plugin.zsh:2> zmodload -F zsh/stat b:zstat
184 19 compaudit:58> _i_files=( '/Users/ec/Library/System Repo/Source/zgen/_zgen' /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ack /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_adb /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ag /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_android /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ansible /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ansible-galaxy /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ansible-playbook /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_artisan /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_atach /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_boot2docker /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_bower /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_bpython /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_brew /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_bundle /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_cabal /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_cap /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_cask /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_celery /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_choc /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_cmake /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_coffee /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_composer /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_console /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_cpanm /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_debuild /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_dget /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_dhcpcd /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ditz /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_docker /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_docker-compose /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_docker-machine /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_docpad /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_drush /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_dzen2 /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_emulator /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_exportfs /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_fab /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_gas /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_geany /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_gem /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ghc /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_gist /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_git-flow /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_git-pulls /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_git-wtf /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_github /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_glances /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_google /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_gradle /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_heroku /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_hledger /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_httpie /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_id3 /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_id3v2 /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_iw /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_jekyll /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_jmeter /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_jmeter-plugins /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_jonas /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_jq /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_kitchen /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_knife /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_language_codes /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_lein /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_logger /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_lunar /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_lunchy /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_manage.py /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_middleman /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_mina /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_mosh /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_mussh /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_mvn /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_nl /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_node /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_nvm /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_optirun /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_pactree /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_pear /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_perf /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_periscope /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_pgsql_utils /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_phing /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_pkcon /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_play /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_port /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_primus /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ps /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_pygmentize /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_rails /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ralio /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_redis-cli /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_rfkill /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_rspec /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_rubocop /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_rvm /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_sbt /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_scala /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_sdd /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_setup.py /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_showoff /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_shutdown /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_smartmontools /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_socat /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_srm /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ssh-copy-id /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_stack /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_subliminal /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_svm /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_symfony /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_teamocil /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_thor /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_tmuxinator /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_vagrant /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_veewee /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_virsh /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_virtualbox /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_vnstat /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_vpnc /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_watch /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_wemux /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_xinput /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_yaourt /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_zfs /usr/local/share/zsh/site-functions/_git /usr/local/share/zsh/site-functions/_lein /usr/local/share/zsh/site-functions/_youtube-dl /Users/ec/.zgen/robbyrussell/oh-my-zsh-master/plugins/brew/_brew /Users/ec/.zgen/robbyrussell/oh-my-zsh-master/plugins/vagrant/_vagrant /Users/ec/.zgen/felixr/docker-zsh-completion-master/_docker /Users/ec/.zgen/tomsquest/nvm-completion.zsh-master/_nvm /usr/local/share/zsh/site-functions/_git /usr/local/share/zsh/site-functions/_lein /usr/local/share/zsh/site-functions/_youtube-dl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_SUSEconfig /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_a2ps /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_a2utils /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_aap /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_acpi /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_acpitool /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_acroread /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_adb /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_add-zsh-hook /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_alias /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_aliases /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_all_labels /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_all_matches /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_alternative /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_analyseplugin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ant /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_antiword /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_apachectl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_apm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_approximate /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_apt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_apt-file /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_apt-move /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_apt-show-versions /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_aptitude /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_arch_archives /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_arch_namespace /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_arg_compile /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_arguments /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_arp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_arping /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_arrays /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_assign /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_at /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_attr /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_augeas /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_auto-apt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_autocd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_awk /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_axi-cache /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bash_completions /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_baz /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_be_name /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_beadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_beep /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bind_addresses /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bindkey /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bison /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bittorrent /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bogofilter /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bpython /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_brace_parameter /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_brctl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bsd_pkg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bsdconfig /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bsdinstall /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_btrfs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bts /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bug /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_builtin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bzip2 /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bzr /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cabal /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cache_invalid /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cal /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_calendar /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_call_function /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_call_program /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_canonical_paths /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ccal /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cdbs-edit-patch /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cdcd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cdr /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cdrdao /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cdrecord /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_chflags /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_chkconfig /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_chmod /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_chown /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_chrt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_chsh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_clay /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cmdstring /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cmp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_combination /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_comm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_command /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_command_names /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_comp_locale /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_compadd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_compdef /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_complete /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_complete_debug /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_complete_help /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_complete_help_generic /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_complete_tag /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_compress /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_condition /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_configure /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_coreadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_correct /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_correct_filename /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_correct_word /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cowsay /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cpio /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cplay /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cryptsetup /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cssh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_csup /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ctags_tags /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cut /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cvs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cvsup /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cygcheck /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cygpath /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cygrunsrv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cygserver /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cygstart /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dak /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_darcs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_date /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_date_formats /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dates /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dbus /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dchroot /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dchroot-dsa /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dcop /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dcut /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_deb_architectures /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_deb_packages /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_debchange /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_debcheckout /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_debdiff /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_debfoster /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_debsign /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_default /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_defaults /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_delimiters /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_describe /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_description /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_devtodo /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_df /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dhclient /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dhcpinfo /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dict /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dict_words /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_diff /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_diff_options /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_diffstat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dir_list /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_directories /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_directory_stack /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dirs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_disable /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dispatch /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_django /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dladm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dlocate /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dmidecode /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dnf /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_domains /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dpatch-edit-patch /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dpkg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dpkg-buildpackage /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dpkg-cross /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dpkg-repack /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dpkg_source /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dput /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dsh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dtrace /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_du /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dumpadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dumper /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dupload /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dvi /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dynamic_directory_name /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ecasound /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_echotc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_echoti /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_elfdump /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_elinks /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_elm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_email_addresses /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_emulate /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_enable /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_enscript /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_env /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_equal /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_espeak /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_etags /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ethtool /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_expand /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_expand_alias /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_expand_word /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_extensions /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_external_pwds /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fakeroot /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_feh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fetch /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fetchmail /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ffmpeg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_figlet /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_file_descriptors /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_file_systems /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_files /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_find /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_find_net_interfaces /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_finger /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fink /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_first /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_flasher /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_flex /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_floppy /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_flowadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fmadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fortune /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_freebsd-update /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fsh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fstat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_functions /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fuse_arguments /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fuse_values /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fuser /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fusermount /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gcc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gcore /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gdb /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_generic /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_genisoimage /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_getclip /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_getconf /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_getent /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_getfacl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_getmail /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_git /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_git-buildpackage /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_global /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_global_tags /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_globflags /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_globqual_delims /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_globquals /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gnome-gv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gnu_generic /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gnupod /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gnutls /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_go /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gpg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gphoto2 /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gprof /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gqview /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gradle /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_graphicsmagick /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_grep /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_grep-excuses /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_groff /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_groups /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_growisofs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_guard /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_guilt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gzip /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_hash /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_have_glob_qual /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_hdiutil /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_hg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_history /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_history_complete_word /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_history_modifiers /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_hosts /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_hwinfo /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_iconv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_id /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ifconfig /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_iftop /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ignored /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_imagemagick /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_in_vared /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_inetadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_init_d /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_initctl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_invoke-rc.d /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ionice /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ip /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ipadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ipset /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_iptables /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_irssi /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ispell /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_iwconfig /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_jails /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_java /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_java_class /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_jexec /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_jls /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_jobs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_jobs_bg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_jobs_builtin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_jobs_fg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_joe /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_join /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_kfmclient /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_kill /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_killall /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_kld /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_knock /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_kvno /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_last /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ld_debug /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ldd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_less /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lha /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lighttpd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_limit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_limits /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_links /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lintian /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_list /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_list_files /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ln /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_loadkeys /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_locales /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_locate /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_logical_volumes /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_look /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_losetup /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ls /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lscfg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lsdev /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lslv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lsof /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lspv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lsusb /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lsvg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lynx /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lzop /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mac_applications /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mac_files_for_application /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_madison /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mail /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mailboxes /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_main_complete /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_make /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_make-kpkg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_man /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_match /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_math /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_math_params /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_matlab /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_md5sum /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mdadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_members /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mencal /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_menu /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mere /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mergechanges /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_message /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_metaflac /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mii-tool /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mime_types /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mixerctl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mkdir /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mkshortcut /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mkzsh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_module /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_module-assistant /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_module_math_func /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_modutils /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mondo /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_monotone /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_moosic /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mosh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_most_recent_file /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mount /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mozilla /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mpc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mplayer /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mtools /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mtr /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_multi_parts /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mutt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_my_accounts /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mysql_utils /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mysqldiff /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nautilus /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ncftp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nedit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_net_interfaces /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_netcat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_netscape /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_netstat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_newsgroups /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_next_label /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_next_tags /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nice /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nkf /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nmap /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nmcli /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_normal /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nothing /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_notmuch /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_npm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nslookup /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_object_classes /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_od /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_okular /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_oldlist /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_open /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_options /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_options_set /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_options_unset /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_osc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_other_accounts /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pack /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_parameter /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_parameters /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_patch /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_patchutils /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_path_commands /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_path_files /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pax /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pbm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pbuilder /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pdf /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pdftk /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_perforce /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_perl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_perl_basepods /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_perl_modules /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_perldoc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pfctl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pfexec /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pgrep /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_php /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_physical_volumes /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pick_variant /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pids /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pine /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ping /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_piuparts /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pkg-config /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pkg5 /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pkg_instance /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pkgadd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pkginfo /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pkgrm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pkgtool /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pon /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_portaudit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_portlint /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_portmaster /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ports /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_portsnap /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_postfix /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_postscript /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_powerd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_prcs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_precommand /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_prefix /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_print /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_printenv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_printers /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_procstat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_prompt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_prove /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_prstat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ps /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ps1234 /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pscp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pspdf /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_psutils /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ptree /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pump /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_putclip /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pydoc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_python /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_python_modules /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_qdbus /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_qemu /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_qiv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_qtplay /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_quilt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_raggle /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rake /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ranlib /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rar /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rcs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rdesktop /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_read /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_read_comp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_readelf /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_readshortcut /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rebootin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_redirect /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_regex_arguments /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_regex_words /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_remote_files /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_renice /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_reprepro /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_requested /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_retrieve_cache /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_retrieve_mac_apps /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ri /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rlogin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rpm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rpmbuild /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rrdtool /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rsync /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rubber /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ruby /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_run-help /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_runit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sablotron /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_samba /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_savecore /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sccs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sched /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_schedtool /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_schroot /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_screen /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sed /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sep_parts /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sequence /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_service /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_services /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_set /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_set_command /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_setfacl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_setopt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_setup /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_setxkbmap /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_showmount /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_signals /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sisu /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_slrn /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_smit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_snoop /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_socket /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sockstat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_softwareupdate /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sort /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_source /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_spamassassin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sqlite /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sqsh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ss /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ssh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sshfs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_stat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_stgit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_store_cache /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_strace /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_strftime /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_strip /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_stty /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_su /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sub_commands /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_subscript /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_subversion /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sudo /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_suffix_alias_files /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_surfraw /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_svcadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_svccfg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_svcprop /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_svcs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_svcs_fmri /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_svn-buildpackage /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sysctl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sysstat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_systat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_system_profiler /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_systemd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tags /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tar /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tar_archive /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tardy /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tcpdump /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tcpsys /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tcptraceroute /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_telnet /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_terminals /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tex /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_texi /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_texinfo /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tidy /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tiff /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tilde /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tilde_files /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_time_zone /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tla /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tmux /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_todo.sh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_toilet /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_toolchain-source /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_topgit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_totd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tpb /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tpconfig /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tracepath /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_trap /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tree /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ttyctl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ttys /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tune2fs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_twidge /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_twisted /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_typeset /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ulimit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_uml /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_unace /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_uname /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_unexpand /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_unhash /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_uniq /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_unison /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_units /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_update-alternatives /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_update-rc.d /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_urls /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_urpmi /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_urxvt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_uscan /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_user_admin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_user_at_host /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_user_expand /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_user_math_func /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_users /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_users_on /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_uzbl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_valgrind /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_value /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_values /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vared /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vars /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vcsh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vim /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vim-addons /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vmstat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vnc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_volume_groups /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vorbis /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vorbiscomment /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vserver /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vux /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_w3m /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wait /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wajig /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wakeup_capable_devices /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wanna-build /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wanted /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_watch /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_watch-snoop /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_webbrowser /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wget /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_whereis /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_which /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_whois /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wiggle /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wpa_cli /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_arguments /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_borderwidth /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_color /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_colormapid /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_cursor /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_display /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_extension /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_font /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_geometry /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_keysym /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_locale /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_modifier /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_name /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_resource /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_selection_timeout /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_title /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_utils /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_visual /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_window /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xargs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xauth /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xautolock /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xclip /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xdvi /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xfig /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xft_fonts /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xloadimage /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xmlsoft /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xmms2 /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xmodmap /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xournal /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xpdf /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xrandr /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xscreensaver /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xset /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xt_arguments /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xt_session_id /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xterm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xwit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xxd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xz /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_yafc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_yast /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_yodl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_yp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_yum /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zargs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zattr /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zcalc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zcalc_line /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zcat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zcompile /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zdump /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zed /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zfs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zfs_dataset /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zfs_keysource_props /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zfs_pool /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zftp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zip /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zle /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zlogin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zmodload /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zmv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zoneadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zones /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zpool /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zpty /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zsh-mime-handler /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zstyle /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ztodo /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zypper ) 
299 14 compinit:493> ((  0  ))
439 900 compdef:1> local opt autol type func delete eval new i ret=0 cmd svc
864 19 compdump:26> _d_files=( '/Users/ec/Library/System Repo/Source/zgen/_zgen' /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ack /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_adb /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ag /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_android /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ansible /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ansible-galaxy /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ansible-playbook /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_artisan /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_atach /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_boot2docker /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_bower /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_bpython /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_brew /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_bundle /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_cabal /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_cap /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_cask /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_celery /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_choc /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_cmake /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_coffee /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_composer /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_console /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_cpanm /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_debuild /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_dget /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_dhcpcd /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ditz /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_docker /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_docker-compose /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_docker-machine /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_docpad /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_drush /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_dzen2 /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_emulator /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_exportfs /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_fab /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_gas /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_geany /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_gem /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ghc /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_gist /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_git-flow /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_git-pulls /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_git-wtf /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_github /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_glances /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_google /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_gradle /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_heroku /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_hledger /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_httpie /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_id3 /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_id3v2 /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_iw /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_jekyll /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_jmeter /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_jmeter-plugins /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_jonas /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_jq /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_kitchen /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_knife /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_language_codes /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_lein /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_logger /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_lunar /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_lunchy /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_manage.py /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_middleman /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_mina /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_mosh /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_mussh /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_mvn /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_nl /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_node /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_nvm /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_optirun /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_pactree /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_pear /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_perf /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_periscope /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_pgsql_utils /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_phing /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_pkcon /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_play /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_port /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_primus /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ps /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_pygmentize /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_rails /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ralio /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_redis-cli /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_rfkill /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_rspec /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_rubocop /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_rvm /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_sbt /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_scala /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_sdd /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_setup.py /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_showoff /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_shutdown /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_smartmontools /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_socat /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_srm /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_ssh-copy-id /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_stack /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_subliminal /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_svm /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_symfony /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_teamocil /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_thor /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_tmuxinator /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_vagrant /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_veewee /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_virsh /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_virtualbox /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_vnstat /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_vpnc /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_watch /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_wemux /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_xinput /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_yaourt /Users/ec/.zgen/zsh-users/zsh-completions-master/src/_zfs /usr/local/share/zsh/site-functions/_git /usr/local/share/zsh/site-functions/_lein /usr/local/share/zsh/site-functions/_youtube-dl /Users/ec/.zgen/robbyrussell/oh-my-zsh-master/plugins/brew/_brew /Users/ec/.zgen/robbyrussell/oh-my-zsh-master/plugins/vagrant/_vagrant /Users/ec/.zgen/felixr/docker-zsh-completion-master/_docker /Users/ec/.zgen/tomsquest/nvm-completion.zsh-master/_nvm /usr/local/share/zsh/site-functions/_git /usr/local/share/zsh/site-functions/_lein /usr/local/share/zsh/site-functions/_youtube-dl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_SUSEconfig /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_a2ps /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_a2utils /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_aap /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_acpi /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_acpitool /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_acroread /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_adb /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_add-zsh-hook /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_alias /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_aliases /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_all_labels /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_all_matches /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_alternative /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_analyseplugin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ant /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_antiword /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_apachectl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_apm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_approximate /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_apt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_apt-file /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_apt-move /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_apt-show-versions /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_aptitude /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_arch_archives /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_arch_namespace /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_arg_compile /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_arguments /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_arp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_arping /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_arrays /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_assign /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_at /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_attr /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_augeas /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_auto-apt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_autocd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_awk /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_axi-cache /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bash_completions /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_baz /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_be_name /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_beadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_beep /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bind_addresses /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bindkey /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bison /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bittorrent /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bogofilter /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bpython /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_brace_parameter /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_brctl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bsd_pkg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bsdconfig /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bsdinstall /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_btrfs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bts /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bug /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_builtin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bzip2 /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_bzr /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cabal /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cache_invalid /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cal /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_calendar /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_call_function /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_call_program /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_canonical_paths /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ccal /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cdbs-edit-patch /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cdcd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cdr /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cdrdao /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cdrecord /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_chflags /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_chkconfig /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_chmod /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_chown /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_chrt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_chsh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_clay /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cmdstring /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cmp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_combination /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_comm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_command /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_command_names /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_comp_locale /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_compadd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_compdef /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_complete /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_complete_debug /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_complete_help /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_complete_help_generic /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_complete_tag /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_compress /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_condition /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_configure /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_coreadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_correct /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_correct_filename /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_correct_word /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cowsay /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cpio /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cplay /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cryptsetup /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cssh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_csup /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ctags_tags /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cut /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cvs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cvsup /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cygcheck /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cygpath /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cygrunsrv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cygserver /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_cygstart /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dak /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_darcs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_date /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_date_formats /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dates /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dbus /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dchroot /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dchroot-dsa /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dcop /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dcut /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_deb_architectures /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_deb_packages /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_debchange /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_debcheckout /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_debdiff /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_debfoster /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_debsign /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_default /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_defaults /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_delimiters /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_describe /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_description /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_devtodo /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_df /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dhclient /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dhcpinfo /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dict /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dict_words /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_diff /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_diff_options /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_diffstat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dir_list /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_directories /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_directory_stack /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dirs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_disable /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dispatch /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_django /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dladm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dlocate /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dmidecode /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dnf /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_domains /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dpatch-edit-patch /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dpkg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dpkg-buildpackage /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dpkg-cross /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dpkg-repack /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dpkg_source /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dput /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dsh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dtrace /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_du /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dumpadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dumper /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dupload /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dvi /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_dynamic_directory_name /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ecasound /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_echotc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_echoti /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_elfdump /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_elinks /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_elm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_email_addresses /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_emulate /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_enable /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_enscript /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_env /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_equal /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_espeak /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_etags /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ethtool /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_expand /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_expand_alias /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_expand_word /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_extensions /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_external_pwds /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fakeroot /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_feh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fetch /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fetchmail /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ffmpeg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_figlet /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_file_descriptors /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_file_systems /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_files /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_find /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_find_net_interfaces /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_finger /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fink /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_first /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_flasher /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_flex /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_floppy /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_flowadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fmadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fortune /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_freebsd-update /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fsh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fstat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_functions /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fuse_arguments /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fuse_values /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fuser /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_fusermount /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gcc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gcore /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gdb /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_generic /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_genisoimage /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_getclip /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_getconf /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_getent /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_getfacl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_getmail /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_git /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_git-buildpackage /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_global /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_global_tags /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_globflags /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_globqual_delims /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_globquals /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gnome-gv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gnu_generic /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gnupod /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gnutls /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_go /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gpg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gphoto2 /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gprof /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gqview /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gradle /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_graphicsmagick /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_grep /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_grep-excuses /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_groff /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_groups /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_growisofs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_guard /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_guilt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_gzip /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_hash /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_have_glob_qual /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_hdiutil /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_hg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_history /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_history_complete_word /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_history_modifiers /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_hosts /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_hwinfo /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_iconv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_id /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ifconfig /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_iftop /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ignored /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_imagemagick /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_in_vared /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_inetadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_init_d /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_initctl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_invoke-rc.d /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ionice /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ip /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ipadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ipset /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_iptables /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_irssi /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ispell /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_iwconfig /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_jails /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_java /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_java_class /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_jexec /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_jls /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_jobs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_jobs_bg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_jobs_builtin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_jobs_fg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_joe /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_join /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_kfmclient /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_kill /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_killall /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_kld /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_knock /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_kvno /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_last /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ld_debug /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ldd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_less /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lha /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lighttpd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_limit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_limits /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_links /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lintian /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_list /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_list_files /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ln /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_loadkeys /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_locales /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_locate /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_logical_volumes /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_look /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_losetup /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ls /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lscfg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lsdev /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lslv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lsof /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lspv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lsusb /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lsvg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lynx /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_lzop /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mac_applications /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mac_files_for_application /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_madison /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mail /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mailboxes /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_main_complete /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_make /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_make-kpkg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_man /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_match /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_math /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_math_params /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_matlab /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_md5sum /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mdadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_members /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mencal /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_menu /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mere /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mergechanges /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_message /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_metaflac /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mii-tool /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mime_types /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mixerctl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mkdir /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mkshortcut /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mkzsh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_module /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_module-assistant /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_module_math_func /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_modutils /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mondo /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_monotone /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_moosic /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mosh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_most_recent_file /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mount /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mozilla /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mpc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mplayer /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mtools /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mtr /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_multi_parts /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mutt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_my_accounts /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mysql_utils /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_mysqldiff /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nautilus /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ncftp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nedit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_net_interfaces /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_netcat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_netscape /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_netstat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_newsgroups /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_next_label /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_next_tags /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nice /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nkf /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nmap /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nmcli /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_normal /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nothing /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_notmuch /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_npm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_nslookup /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_object_classes /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_od /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_okular /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_oldlist /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_open /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_options /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_options_set /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_options_unset /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_osc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_other_accounts /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pack /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_parameter /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_parameters /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_patch /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_patchutils /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_path_commands /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_path_files /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pax /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pbm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pbuilder /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pdf /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pdftk /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_perforce /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_perl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_perl_basepods /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_perl_modules /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_perldoc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pfctl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pfexec /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pgrep /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_php /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_physical_volumes /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pick_variant /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pids /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pine /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ping /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_piuparts /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pkg-config /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pkg5 /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pkg_instance /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pkgadd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pkginfo /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pkgrm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pkgtool /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pon /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_portaudit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_portlint /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_portmaster /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ports /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_portsnap /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_postfix /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_postscript /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_powerd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_prcs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_precommand /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_prefix /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_print /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_printenv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_printers /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_procstat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_prompt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_prove /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_prstat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ps /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ps1234 /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pscp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pspdf /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_psutils /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ptree /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pump /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_putclip /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_pydoc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_python /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_python_modules /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_qdbus /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_qemu /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_qiv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_qtplay /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_quilt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_raggle /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rake /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ranlib /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rar /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rcs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rdesktop /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_read /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_read_comp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_readelf /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_readshortcut /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rebootin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_redirect /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_regex_arguments /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_regex_words /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_remote_files /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_renice /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_reprepro /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_requested /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_retrieve_cache /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_retrieve_mac_apps /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ri /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rlogin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rpm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rpmbuild /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rrdtool /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rsync /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_rubber /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ruby /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_run-help /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_runit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sablotron /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_samba /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_savecore /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sccs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sched /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_schedtool /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_schroot /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_screen /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sed /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sep_parts /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sequence /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_service /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_services /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_set /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_set_command /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_setfacl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_setopt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_setup /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_setxkbmap /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_showmount /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_signals /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sisu /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_slrn /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_smit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_snoop /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_socket /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sockstat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_softwareupdate /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sort /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_source /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_spamassassin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sqlite /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sqsh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ss /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ssh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sshfs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_stat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_stgit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_store_cache /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_strace /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_strftime /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_strip /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_stty /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_su /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sub_commands /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_subscript /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_subversion /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sudo /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_suffix_alias_files /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_surfraw /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_svcadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_svccfg /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_svcprop /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_svcs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_svcs_fmri /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_svn-buildpackage /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sysctl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_sysstat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_systat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_system_profiler /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_systemd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tags /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tar /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tar_archive /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tardy /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tcpdump /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tcpsys /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tcptraceroute /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_telnet /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_terminals /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tex /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_texi /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_texinfo /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tidy /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tiff /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tilde /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tilde_files /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_time_zone /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tla /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tmux /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_todo.sh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_toilet /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_toolchain-source /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_topgit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_totd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tpb /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tpconfig /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tracepath /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_trap /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tree /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ttyctl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ttys /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_tune2fs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_twidge /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_twisted /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_typeset /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ulimit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_uml /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_unace /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_uname /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_unexpand /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_unhash /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_uniq /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_unison /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_units /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_update-alternatives /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_update-rc.d /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_urls /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_urpmi /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_urxvt /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_uscan /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_user_admin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_user_at_host /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_user_expand /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_user_math_func /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_users /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_users_on /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_uzbl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_valgrind /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_value /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_values /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vared /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vars /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vcsh /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vim /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vim-addons /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vmstat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vnc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_volume_groups /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vorbis /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vorbiscomment /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vserver /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_vux /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_w3m /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wait /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wajig /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wakeup_capable_devices /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wanna-build /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wanted /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_watch /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_watch-snoop /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_webbrowser /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wget /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_whereis /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_which /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_whois /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wiggle /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_wpa_cli /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_arguments /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_borderwidth /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_color /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_colormapid /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_cursor /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_display /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_extension /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_font /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_geometry /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_keysym /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_locale /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_modifier /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_name /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_resource /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_selection_timeout /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_title /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_utils /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_visual /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_x_window /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xargs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xauth /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xautolock /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xclip /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xdvi /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xfig /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xft_fonts /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xloadimage /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xmlsoft /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xmms2 /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xmodmap /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xournal /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xpdf /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xrandr /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xscreensaver /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xset /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xt_arguments /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xt_session_id /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xterm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xwit /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xxd /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_xz /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_yafc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_yast /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_yodl /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_yp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_yum /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zargs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zattr /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zcalc /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zcalc_line /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zcat /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zcompile /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zdump /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zed /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zfs /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zfs_dataset /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zfs_keysource_props /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zfs_pool /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zftp /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zip /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zle /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zlogin /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zmodload /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zmv /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zoneadm /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zones /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zpool /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zpty /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zsh-mime-handler /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zstyle /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_ztodo /usr/local/Cellar/zsh/5.1.1/share/zsh/functions/_zypper ) 
876 12 compdump:42> print '\n_comps=('

(My own zcompinit takes nowhere near as long, as it's set -C, and I manually clear out the ~/.zcompdump when I have a reason to.)

At the moment, I've accidentally fixed this for myself by lazy-loading all of zgen itself, so the zcompinit is never hit at load-time โ€ฆ but I can't figure out why zgen would be messing with this anyway. Can this be disabled somehow?

zgen selfupdate not working

Hello. On my installation (Mac Yosemite, home dir) there seems to be an issue with ZGEN_SOURCE so that running zgen selfupdate results in:

zgen is not running from a git repository, so it is not possible to selfupdate

.. even though it is running from a git repo (cd-ing to that dir and running git pull works fine).

Do you have a clue what the issue might be?

Thanks.

fpath "poluted" between users

Hi, I have a setup where I have both my normal and root user using a zsh configuration with zplug.
I have noticed that when I switch users (su), I get the notorious "insecure directories" warning:

zsh compinit: insecure directories and files, run compaudit for list. Ignore insecure directories and files and continue [y] or abort compinit [n]?
I did some digging around and found this is because the "fpath" variable is "polluted" by the "normal users" zsh instance.

A minimal zshrc that reproduces the issue (I am using the 2.3.2 debian version)
source /usr/share/zplug/init.zsh zplug "zsh-users/zsh-syntax-highlighting", nice:10 zplug load
If I then do "echo $fpath" after zsh has started, it contains "/.zplug/repos/RobSis/zsh-completion-generator/completions"

If I switch to root now ("su"), compinit gets executed (from the __zplug::core::core::prepare() function). Since fpath contains an "insecure" path (in the regular user home dir), it gives the above warning.

.zshrc section clarification

I think this very nice plugin need some clarification about zshrc edition. If I understand well, if I modify my '.zshrcfile, I have to delete the$ZGEN_INIT` file if I want my change to be effective at the next login right?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.