zsh-workers
 help / color / mirror / code / Atom feed
* Bug report: segfault when pasting (function and alias names collide)
@ 2017-01-05 16:21 Victor Volle
  2017-01-06  2:29 ` Daniel Shahaf
  0 siblings, 1 reply; 6+ messages in thread
From: Victor Volle @ 2017-01-05 16:21 UTC (permalink / raw)
  To: zsh-workers

[-- Attachment #1: Type: text/plain, Size: 956 bytes --]

I think this may already have been reported in 2010:
https://www.zsh.org/mla/workers/2010/msg00521.html
but it does not seem to be fixed.
The solution is simple enough, but in my case it was triggered whenever I
pasted something
in the Terminal, so it was rather difficult to find the cause.

I defined a function 'h' (in my .zshrc):

    h() {
      pattern="$1"
      if [[ -z "$pattern" ]]; then
        fc -n -l 1
      else
        if [[ $pattern =~ '[*]' ]]; then
          fc -n -l -m "${pattern}" 1
        else
          fc -n -l -m "*${pattern}*" 1
        fi
      fi
    }

without unaliasing 'h' before (which is defined in the 'history' plugin of
oh-my-zsh).

    alias h='history'

If the redefinition is problematic, would it be possible to trigger an
error, when the function
is defined? A segfault when pasting seems to be quite bad.


Environment:
  OS X 10.12.2
  iTerm 2 (3.0.13)
  zsh 5.3.1 (x86_64-apple-darwin16.3.0) # via homebrew

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Bug report: segfault when pasting (function and alias names collide)
  2017-01-05 16:21 Bug report: segfault when pasting (function and alias names collide) Victor Volle
@ 2017-01-06  2:29 ` Daniel Shahaf
  2017-01-06 12:26   ` Victor Volle
  2017-01-06 16:40   ` Bart Schaefer
  0 siblings, 2 replies; 6+ messages in thread
From: Daniel Shahaf @ 2017-01-06  2:29 UTC (permalink / raw)
  To: Victor Volle; +Cc: zsh-workers

Victor Volle wrote on Thu, Jan 05, 2017 at 17:21:03 +0100:
> I think this may already have been reported in 2010:
> https://www.zsh.org/mla/workers/2010/msg00521.html
> but it does not seem to be fixed.

The part with function and alias has not been "fixed" because it's not
a bug.  To define a function without interpreting aliases in the
function name, use this syntax:

    function f {
      ⋮
    }

> If the redefinition is problematic, would it be possible to trigger an
> error, when the function
> is defined? A segfault when pasting seems to be quite bad.

All segfaults are bug, but how do you reproduce this one?  I did:

$ zsh -f
% history() {
  ⋮ copied the function body from your mail
  }
% <paste>

and it did not segfault.  Can you provide a minimal reproduction script
starting from `zsh -f`?  (and without third party modules, if at all
possible)

Thanks,

Daniel


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Bug report: segfault when pasting (function and alias names collide)
  2017-01-06  2:29 ` Daniel Shahaf
@ 2017-01-06 12:26   ` Victor Volle
  2017-01-06 16:21     ` Daniel Shahaf
  2017-01-06 16:40   ` Bart Schaefer
  1 sibling, 1 reply; 6+ messages in thread
From: Victor Volle @ 2017-01-06 12:26 UTC (permalink / raw)
  To: Daniel Shahaf; +Cc: zsh-workers

[-- Attachment #1: Type: text/plain, Size: 1442 bytes --]

I tried to reduce it as far as possible, but it does not happen without
oh-my-zsh.
This is the minimal version that still shows the segfault:

    source $ZSH/oh-my-zsh.sh

    alias h='history'

    h() {
      echo "foo"
    }

Steps to reproduce:

   0) install latest oh-my-zsh
   1) Invoke `zsh -f`
   2) source the above script
   3) paste anything




On Fri, Jan 6, 2017 at 3:29 AM, Daniel Shahaf <d.s@daniel.shahaf.name>
wrote:

> Victor Volle wrote on Thu, Jan 05, 2017 at 17:21:03 +0100:
> > I think this may already have been reported in 2010:
> > https://www.zsh.org/mla/workers/2010/msg00521.html
> > but it does not seem to be fixed.
>
> The part with function and alias has not been "fixed" because it's not
> a bug.  To define a function without interpreting aliases in the
> function name, use this syntax:
>
>     function f {
>       ⋮
>     }
>
> > If the redefinition is problematic, would it be possible to trigger an
> > error, when the function
> > is defined? A segfault when pasting seems to be quite bad.
>
> All segfaults are bug, but how do you reproduce this one?  I did:
>
> $ zsh -f
> % history() {
>   ⋮ copied the function body from your mail
>   }
> % <paste>
>
> and it did not segfault.  Can you provide a minimal reproduction script
> starting from `zsh -f`?  (and without third party modules, if at all
> possible)
>
> Thanks,
>
> Daniel
>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Bug report: segfault when pasting (function and alias names collide)
  2017-01-06 12:26   ` Victor Volle
@ 2017-01-06 16:21     ` Daniel Shahaf
  2017-01-06 18:56       ` Victor Volle
  0 siblings, 1 reply; 6+ messages in thread
From: Daniel Shahaf @ 2017-01-06 16:21 UTC (permalink / raw)
  To: Victor Volle; +Cc: zsh-workers

Victor Volle wrote on Fri, Jan 06, 2017 at 13:26:30 +0100:
> I tried to reduce it as far as possible, but it does not happen without
> oh-my-zsh.
> This is the minimal version that still shows the segfault:
> 
>     source $ZSH/oh-my-zsh.sh
> 
>     alias h='history'
> 
>     h() {
>       echo "foo"
>     }
> 
> Steps to reproduce:
> 
>    0) install latest oh-my-zsh
>    1) Invoke `zsh -f`
>    2) source the above script
>    3) paste anything

Thanks, that's still too broad.  Could you ask the oh-my-zsh people to
come up with a reproduction script that is more self-contained?

Before doing that you could try `zsh -fx` and grepping the output
'history' and for 'paste'... but if that doesn't produce a minimal
reproducer, we should ask omz for help, not reverse-engineer their code.  :)

CHeers,

Daniel


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Bug report: segfault when pasting (function and alias names collide)
  2017-01-06  2:29 ` Daniel Shahaf
  2017-01-06 12:26   ` Victor Volle
@ 2017-01-06 16:40   ` Bart Schaefer
  1 sibling, 0 replies; 6+ messages in thread
From: Bart Schaefer @ 2017-01-06 16:40 UTC (permalink / raw)
  To: zsh-workers

On Jan 6,  2:29am, Daniel Shahaf wrote:
}
} All segfaults are bug, but how do you reproduce this one?

This was explained in the original thread from 2010 to which Victor
referred.  The crash is because of a stack overflow during the
infinite function-call recursion.  Zsh can't detect at runtime that
stack overflow is about to occur, so it sets a compile-time limit
on how deep the recursion is allowed to become.

If zsh is compiled on a machine with memory size X and then run on
a machine with memory size Y < X, the compile-time limit may be too
large and the recursion will continue until a fault results.

There is no practical fix for this, nor is there a practical way to
trap the fault and recover cleanly.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Bug report: segfault when pasting (function and alias names collide)
  2017-01-06 16:21     ` Daniel Shahaf
@ 2017-01-06 18:56       ` Victor Volle
  0 siblings, 0 replies; 6+ messages in thread
From: Victor Volle @ 2017-01-06 18:56 UTC (permalink / raw)
  To: Daniel Shahaf; +Cc: zsh-workers


[-- Attachment #1.1: Type: text/plain, Size: 1162 bytes --]

I already had created https://github.com/robbyrussell/oh-my-zsh/issues/5755

You find the result of `source .oh-my-zsh | grep ...` attached.
Pasting anything did not produce any more output (besides the segfault)


On Fri, Jan 6, 2017 at 5:21 PM, Daniel Shahaf <d.s@daniel.shahaf.name>
wrote:

> Victor Volle wrote on Fri, Jan 06, 2017 at 13:26:30 +0100:
> > I tried to reduce it as far as possible, but it does not happen without
> > oh-my-zsh.
> > This is the minimal version that still shows the segfault:
> >
> >     source $ZSH/oh-my-zsh.sh
> >
> >     alias h='history'
> >
> >     h() {
> >       echo "foo"
> >     }
> >
> > Steps to reproduce:
> >
> >    0) install latest oh-my-zsh
> >    1) Invoke `zsh -f`
> >    2) source the above script
> >    3) paste anything
>
> Thanks, that's still too broad.  Could you ask the oh-my-zsh people to
> come up with a reproduction script that is more self-contained?
>
> Before doing that you could try `zsh -fx` and grepping the output
> 'history' and for 'paste'... but if that doesn't produce a minimal
> reproducer, we should ask omz for help, not reverse-engineer their code.
> :)
>
> CHeers,
>
> Daniel
>

[-- Attachment #1.2: Type: text/html, Size: 1816 bytes --]

[-- Attachment #2: source-zsh-repro-history-paste.log --]
[-- Type: application/octet-stream, Size: 78140 bytes --]

+/Users/vivo/.oh-my-zsh/lib/completion.zsh:13> bindkey -M menuselect '^o' accept-and-infer-next-history
+/Users/vivo/.oh-my-zsh/oh-my-zsh.sh:31> config_file=/Users/vivo/.oh-my-zsh/lib/history.zsh
+/Users/vivo/.oh-my-zsh/oh-my-zsh.sh:32> custom_config_file=/Users/vivo/.oh-my-zsh/custom/lib/history.zsh
+/Users/vivo/.oh-my-zsh/oh-my-zsh.sh:33> [ -f /Users/vivo/.oh-my-zsh/custom/lib/history.zsh ']'
+/Users/vivo/.oh-my-zsh/oh-my-zsh.sh:34> source /Users/vivo/.oh-my-zsh/lib/history.zsh
+/Users/vivo/.oh-my-zsh/lib/history.zsh:2> [ -z '' ']'
+/Users/vivo/.oh-my-zsh/lib/history.zsh:3> HISTFILE=/Users/vivo/.zsh_history
+/Users/vivo/.oh-my-zsh/lib/history.zsh:6> HISTSIZE=10000
+/Users/vivo/.oh-my-zsh/lib/history.zsh:7> SAVEHIST=10000
+/Users/vivo/.oh-my-zsh/lib/history.zsh:10> case  (mm/dd/yyyy)
+/Users/vivo/.oh-my-zsh/lib/history.zsh:10> case  (dd.mm.yyyy)
+/Users/vivo/.oh-my-zsh/lib/history.zsh:10> case  (yyyy-mm-dd)
+/Users/vivo/.oh-my-zsh/lib/history.zsh:10> case  (*)
+/Users/vivo/.oh-my-zsh/lib/history.zsh:14> alias 'history=fc -l 1'
+/Users/vivo/.oh-my-zsh/lib/history.zsh:17> setopt append_history
+/Users/vivo/.oh-my-zsh/lib/history.zsh:18> setopt extended_history
+/Users/vivo/.oh-my-zsh/lib/history.zsh:19> setopt hist_expire_dups_first
+/Users/vivo/.oh-my-zsh/lib/history.zsh:20> setopt hist_ignore_dups
+/Users/vivo/.oh-my-zsh/lib/history.zsh:21> setopt hist_ignore_space
+/Users/vivo/.oh-my-zsh/lib/history.zsh:22> setopt hist_verify
+/Users/vivo/.oh-my-zsh/lib/history.zsh:23> setopt inc_append_history
+/Users/vivo/.oh-my-zsh/lib/history.zsh:24> setopt share_history
+/Users/vivo/.oh-my-zsh/lib/key-bindings.zsh:22> bindkey '^r' history-incremental-search-backward
+/Users/vivo/.oh-my-zsh/lib/key-bindings.zsh:24> bindkey $'\C-[[5~' up-line-or-history
+/Users/vivo/.oh-my-zsh/lib/key-bindings.zsh:27> bindkey $'\C-[[6~' down-line-or-history
+/Users/vivo/.oh-my-zsh/lib/misc.zsh:8> autoload -Uz bracketed-paste-magic
+/Users/vivo/.oh-my-zsh/lib/misc.zsh:9> zle -N bracketed-paste bracketed-paste-magic
+compaudit:60> _i_files=( /usr/local/share/zsh/site-functions/_brew /usr/local/share/zsh/site-functions/_brew_cask /usr/local/share/zsh/site-functions/_git /usr/local/share/zsh/site-functions/_hg /usr/local/share/zsh/site-functions/_j /usr/local/share/zsh/site-functions/_lein /usr/local/share/zsh/site-functions/_packer /usr/local/share/zsh/site-functions/_tig /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_SUSEconfig /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_a2ps /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_a2utils /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_aap /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_absolute_command_paths /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_acpi /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_acpitool /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_acroread /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_adb /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_add-zle-hook-widget /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_add-zsh-hook /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_alias /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_aliases /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_all_labels /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_all_matches /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_alternative /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_analyseplugin /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ant /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_antiword /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_apachectl /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_apm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_approximate /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_apt /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_apt-file /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_apt-move /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_apt-show-versions /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_aptitude /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_arch_archives /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_arch_namespace /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_arg_compile /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_arguments /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_arp /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_arping /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_arrays /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_assign /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_at /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_attr /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_augeas /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_auto-apt /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_autocd /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_awk /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_axi-cache /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_bash_completions /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_baudrates /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_baz /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_be_name /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_beadm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_beep /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_bibtex /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_bind_addresses /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_bindkey /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_bison /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_bittorrent /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_bogofilter /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_bpython /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_brace_parameter /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_brctl /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_bsd_pkg /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_bsdconfig /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_bsdinstall /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_btrfs /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_bts /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_bug /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_builtin /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_bzip2 /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_bzr /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cabal /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cache_invalid /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cal /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_calendar /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_call_function /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_call_program /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_canonical_paths /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cat /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ccal /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cd /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cdbs-edit-patch /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cdcd /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cdr /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cdrdao /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cdrecord /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_chflags /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_chkconfig /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_chmod /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_chown /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_chrt /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_chsh /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_clay /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cmdstring /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cmp /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_combination /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_comm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_command /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_command_names /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_comp_locale /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_compadd /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_compdef /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_complete /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_complete_debug /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_complete_help /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_complete_help_generic /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_complete_tag /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_completers /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_compress /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_condition /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_configure /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_coreadm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_correct /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_correct_filename /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_correct_word /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cowsay /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cp /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cpio /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cplay /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cpupower /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cryptsetup /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cscope /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cssh /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_csup /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ctags_tags /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cu /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_curl /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cut /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cvs /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cvsup /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cygcheck /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cygpath /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cygrunsrv /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cygserver /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_cygstart /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dak /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_darcs /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_date /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_date_formats /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dates /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dbus /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dchroot /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dchroot-dsa /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dcop /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dcut /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dd /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_deb_architectures /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_deb_packages /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_debbugs_bugnumber /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_debchange /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_debcheckout /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_debdiff /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_debfoster /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_debsign /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_default /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_defaults /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_delimiters /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_describe /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_description /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_devtodo /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_df /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dhclient /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dhcpinfo /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dict /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dict_words /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_diff /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_diff_options /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_diffstat /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dig /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dir_list /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_directories /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_directory_stack /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dirs /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_disable /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dispatch /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_django /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dladm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dlocate /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dmesg /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dmidecode /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dnf /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_doas /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_domains /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dpatch-edit-patch /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dpkg /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dpkg-buildpackage /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dpkg-cross /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dpkg-repack /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dpkg_source /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dput /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dsh /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dtrace /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_du /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dumpadm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dumper /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dupload /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dvi /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_dynamic_directory_name /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ecasound /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_echotc /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_echoti /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_elfdump /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_elinks /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_elm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_email_addresses /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_emulate /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_enable /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_enscript /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_env /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_equal /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_espeak /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_etags /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ethtool /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_evince /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_expand /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_expand_alias /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_expand_word /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_extensions /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_external_pwds /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_fakeroot /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_fc /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_feh /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_fetch /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_fetchmail /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ffmpeg /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_figlet /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_file_descriptors /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_file_systems /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_files /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_find /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_find_net_interfaces /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_finger /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_fink /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_first /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_flasher /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_flex /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_floppy /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_flowadm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_fmadm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_fortune /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_freebsd-update /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_fsh /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_fstat /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_functions /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_fuse_arguments /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_fuse_values /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_fuser /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_fusermount /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_fw_update /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gcc /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gcore /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gdb /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_generic /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_genisoimage /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_getclip /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_getconf /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_getent /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_getfacl /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_getmail /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_git /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_git-buildpackage /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_global /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_global_tags /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_globflags /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_globqual_delims /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_globquals /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gnome-gv /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gnu_generic /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gnupod /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gnutls /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_go /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gpasswd /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gpg /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gphoto2 /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gprof /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gqview /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gradle /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_graphicsmagick /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_grep /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_grep-excuses /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_groff /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_groups /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_growisofs /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gs /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gsettings /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gstat /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_guard /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_guilt /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gv /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_gzip /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_hash /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_have_glob_qual /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_hdiutil /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_head /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_hg /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_history /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_history_complete_word /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_history_modifiers /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_hosts /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_htop /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_hwinfo /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_iconv /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_iconvconfig /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_id /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ifconfig /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_iftop /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ignored /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_imagemagick /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_in_vared /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_inetadm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_init_d /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_initctl /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_invoke-rc.d /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ionice /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_iostat /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ip /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ipadm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ipset /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_iptables /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_irssi /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ispell /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_iwconfig /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_jails /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_java /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_java_class /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_jexec /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_jls /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_jobs /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_jobs_bg /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_jobs_builtin /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_jobs_fg /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_joe /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_join /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_jot /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_kfmclient /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_kill /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_killall /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_kld /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_knock /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_kpartx /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_kvno /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_last /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ld_debug /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ldd /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_less /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_lha /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_libvirt /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_lighttpd /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_limit /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_limits /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_links /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_lintian /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_list /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_list_files /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_lldb /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ln /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_loadkeys /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_locale /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_localedef /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_locales /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_locate /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_logical_volumes /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_look /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_losetup /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_lp /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ls /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_lscfg /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_lsdev /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_lslv /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_lsof /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_lspv /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_lsusb /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_lsvg /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ltrace /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_lynx /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_lzop /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mac_applications /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mac_files_for_application /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_madison /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mail /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mailboxes /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_main_complete /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_make /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_make-kpkg /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_man /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_match /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_math /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_math_params /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_matlab /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_md5sum /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mdadm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_members /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mencal /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_menu /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mere /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mergechanges /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_message /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_metaflac /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mh /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mii-tool /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mime_types /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mixerctl /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mkdir /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mkshortcut /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mkzsh /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_module /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_module-assistant /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_module_math_func /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_modutils /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mondo /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_monotone /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_moosic /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mosh /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_most_recent_file /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mount /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mozilla /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mpc /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mplayer /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mt /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mtools /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mtr /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_multi_parts /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mutt /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_my_accounts /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mysql_utils /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_mysqldiff /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_nautilus /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ncftp /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_nedit /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_net_interfaces /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_netcat /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_netscape /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_netstat /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_newsgroups /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_next_label /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_next_tags /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_nice /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_nkf /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_nl /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_nm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_nmap /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_nmcli /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_normal /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_nothing /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_notmuch /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_npm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_nslookup /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_objdump /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_object_classes /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_object_files /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_od /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_okular /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_oldlist /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_open /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_openstack /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_options /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_options_set /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_options_unset /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_osc /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_other_accounts /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pack /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_parameter /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_parameters /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_patch /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_patchutils /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_path_commands /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_path_files /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pax /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pbm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pbuilder /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pdf /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pdftk /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_perforce /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_perl /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_perl_basepods /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_perl_modules /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_perldoc /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pfctl /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pfexec /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pgrep /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_php /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_physical_volumes /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pick_variant /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_picocom /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pidof /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pids /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pine /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ping /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_piuparts /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pkg-config /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pkg5 /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pkg_instance /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pkgadd /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pkginfo /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pkgrm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pkgtool /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pon /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_portaudit /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_portlint /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_portmaster /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ports /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_portsnap /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_postfix /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_postscript /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_powerd /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_prcs /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_precommand /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_prefix /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_print /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_printenv /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_printers /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_procstat /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_prompt /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_prove /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_prstat /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ps /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ps1234 /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pscp /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pspdf /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_psutils /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ptree /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pump /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_putclip /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_pydoc /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_python /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_python_modules /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_qdbus /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_qemu /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_qiv /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_qtplay /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_quilt /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_raggle /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_rake /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ranlib /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_rar /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_rcctl /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_rcs /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_rdesktop /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_read /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_read_comp /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_readelf /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_readshortcut /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_rebootin /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_redirect /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_regex_arguments /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_regex_words /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_remote_files /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_renice /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_reprepro /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_requested /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_retrieve_cache /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_retrieve_mac_apps /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ri /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_rlogin /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_rm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_rpm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_rpmbuild /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_rrdtool /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_rsync /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_rubber /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ruby /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_run-help /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_runit /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sablotron /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_samba /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_savecore /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sccs /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sched /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_schedtool /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_schroot /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_scl /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_screen /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_script /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sed /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sep_parts /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sequence /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_service /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_services /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_set /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_set_command /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_setfacl /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_setopt /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_setup /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_setxkbmap /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sh /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_showmount /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_signals /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sisu /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_slrn /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_smit /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_snoop /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_socket /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sockstat /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_softwareupdate /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sort /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_source /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_spamassassin /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sqlite /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sqsh /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ss /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ssh /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sshfs /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_stat /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_stgit /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_store_cache /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_strace /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_strftime /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_strip /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_stty /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_su /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sub_commands /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_subscript /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_subversion /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sudo /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_suffix_alias_files /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_surfraw /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_svcadm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_svccfg /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_svcprop /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_svcs /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_svcs_fmri /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_svn-buildpackage /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sys_calls /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sysctl /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sysrc /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_sysstat /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_systat /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_system_profiler /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tags /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tail /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tar /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tar_archive /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tardy /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tcpdump /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tcpsys /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tcptraceroute /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_telnet /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_terminals /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tex /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_texi /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_texinfo /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tidy /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tiff /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tilde /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tilde_files /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_time_zone /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tin /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tla /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tmux /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_todo.sh /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_toilet /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_toolchain-source /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_top /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_topgit /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_totd /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_touch /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tpb /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tpconfig /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tput /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tr /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tracepath /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_trap /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tree /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_truss /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ttyctl /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ttys /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_tune2fs /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_twidge /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_twisted /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_typeset /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ulimit /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_uml /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_unace /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_uname /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_unexpand /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_unhash /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_uniq /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_unison /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_units /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_update-alternatives /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_update-rc.d /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_urls /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_urpmi /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_urxvt /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_uscan /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_user_admin /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_user_at_host /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_user_expand /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_user_math_func /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_users /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_users_on /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_uzbl /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_valgrind /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_value /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_values /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_vared /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_vars /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_vcsh /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_vim /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_vim-addons /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_vmstat /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_vnc /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_volume_groups /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_vorbis /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_vorbiscomment /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_vserver /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_vux /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_w3m /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_wait /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_wajig /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_wakeup_capable_devices /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_wanna-build /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_wanted /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_watch /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_watch-snoop /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_wc /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_webbrowser /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_wget /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_whereis /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_which /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_whois /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_widgets /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_wiggle /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_wpa_cli /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_arguments /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_borderwidth /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_color /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_colormapid /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_cursor /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_display /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_extension /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_font /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_geometry /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_keysym /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_locale /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_modifier /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_name /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_resource /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_selection_timeout /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_title /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_utils /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_visual /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_x_window /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xargs /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xauth /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xautolock /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xclip /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xdvi /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xfig /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xft_fonts /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xloadimage /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xmlsoft /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xmms2 /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xmodmap /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xournal /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xpdf /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xrandr /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xscreensaver /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xset /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xt_arguments /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xt_session_id /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xterm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xv /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xwit /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xxd /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_xz /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_yafc /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_yast /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_yodl /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_yp /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_yum /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zargs /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zattr /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zcalc /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zcalc_line /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zcat /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zcompile /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zdump /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zed /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zfs /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zfs_dataset /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zfs_keysource_props /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zfs_pool /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zftp /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zip /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zle /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zlogin /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zmodload /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zmv /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zoneadm /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zones /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zpool /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zpty /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zsh /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zsh-mime-handler /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zsocket /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zstyle /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_ztodo /usr/local/Cellar/zsh/5.3.1/share/zsh/functions/_zypper )
+/Users/vivo/.zcompdump-Victor’s MacBook Pro-5.3.1:3> _comps=( - _precommand -array-value- _value -assign-parameter- _assign -brace-parameter- _brace_parameter -command- _autocd -command-line- _normal -condition- _condition -default- _default -equal- _equal -first- _first -math- _math -parameter- _parameter -redirect- _redirect -redirect-,-default-,-default- _files '-redirect-,<,bunzip2' _bzip2 '-redirect-,<,bzip2' _bzip2 '-redirect-,<,compress' _compress '-redirect-,<,gunzip' _gzip '-redirect-,<,gzip' _gzip '-redirect-,<,uncompress' _compress '-redirect-,<,unxz' _xz '-redirect-,<,xz' _xz '-redirect-,>,bzip2' _bzip2 '-redirect-,>,compress' _compress '-redirect-,>,gzip' _gzip '-redirect-,>,xz' _xz -subscript- _subscript -tilde- _tilde -value- _value -value-,-default-,-command- _zargs -value-,-default-,-default- _value -value-,ADB_TRACE,-default- _adb -value-,ANDROID_LOG_TAGS,-default- _adb -value-,ANDROID_SERIAL,-default- _adb -value-,ANT_ARGS,-default- _ant -value-,CFLAGS,-default- _gcc -value-,CPPFLAGS,-default- _gcc -value-,CXXFLAGS,-default- _gcc -value-,DISPLAY,-default- _x_display -value-,GREP_OPTIONS,-default- _grep -value-,GZIP,-default- _gzip -value-,LANG,-default- _locales -value-,LANGUAGE,-default- _locales -value-,LDFLAGS,-default- _gcc -value-,LD_DEBUG,-default- _ld_debug -value-,LESS,-default- _less -value-,LESSCHARSET,-default- _less -value-,LPDEST,-default- _printers -value-,P4CLIENT,-default- _perforce -value-,P4MERGE,-default- _perforce -value-,P4PORT,-default- _perforce -value-,P4USER,-default- _perforce -value-,PERLDOC,-default- _perldoc -value-,PRINTER,-default- _printers -value-,PROMPT,-default- _ps1234 -value-,PROMPT2,-default- _ps1234 -value-,PROMPT3,-default- _ps1234 -value-,PROMPT4,-default- _ps1234 -value-,PS1,-default- _ps1234 -value-,PS2,-default- _ps1234 -value-,PS3,-default- _ps1234 -value-,PS4,-default- _ps1234 -value-,RPROMPT,-default- _ps1234 -value-,RPROMPT2,-default- _ps1234 -value-,RPS1,-default- _ps1234 -value-,RPS2,-default- _ps1234 -value-,SPROMPT,-default- _ps1234 -value-,TERM,-default- _terminals -value-,TERMINFO_DIRS,-default- _dir_list -value-,TZ,-default- _time_zone -value-,VALGRIND_OPTS,-default- _valgrind -value-,WWW_HOME,-default- _urls -value-,XML_CATALOG_FILES,-default- _xmlsoft -value-,XZ_DEFAULTS,-default- _xz -value-,XZ_OPT,-default- _xz -vared- _in_vared -zcalc-line- _zcalc_line . _source 5g _go 5l _go 6g _go 6l _go 8g _go 8l _go Mail _mail Mosaic _webbrowser SuSEconfig _SUSEconfig a2dismod _a2utils a2dissite _a2utils a2enmod _a2utils a2ensite _a2utils a2ps _a2ps aaaa _hosts aap _aap acpi _acpi acpitool _acpitool acroread _acroread adb _adb add-zle-hook-widget _add-zle-hook-widget add-zsh-hook _add-zsh-hook admin _sccs ali _mh alias _alias amaya _webbrowser analyseplugin _analyseplugin animate _imagemagick anno _mh ant _ant antiword _antiword aodh _openstack aoss _precommand apache2ctl _apachectl apachectl _apachectl apm _apm appletviewer _java apropos _man apt _apt apt-cache _apt apt-cdrom _apt apt-config _apt apt-file _apt-file apt-get _apt apt-mark _apt apt-move _apt-move apt-show-versions _apt-show-versions aptitude _aptitude apvlv _pdf arena _webbrowser arp _arp arping _arping at _at atq _at atrm _at attr _attr augtool _augeas auto-apt _auto-apt autoload _typeset awk _awk axi-cache _axi-cache barbican _openstack bash _sh batch _at baz _baz beadm _beadm beep _beep bg _jobs_bg bibtex _bibtex bindkey _bindkey bison _bison bmake _make bogofilter _bogofilter bogotune _bogofilter bogoutil _bogofilter bpython _bpython bpython-gtk _bpython bpython-urwid _bpython bpython2 _bpython bpython2-gtk _bpython bpython2-urwid _bpython bpython3 _bpython bpython3-gtk _bpython bpython3-urwid _bpython brctl _brctl brew _brew brew-cask _brew_cask bsdconfig _bsdconfig bsdgrep _grep bsdinstall _bsdinstall btdownloadcurses _bittorrent btdownloadgui _bittorrent btdownloadheadless _bittorrent btlaunchmany _bittorrent btlaunchmanycurses _bittorrent btmakemetafile _bittorrent btreannounce _bittorrent btrename _bittorrent btrfs _btrfs bts _bts btshowmetainfo _bittorrent bttrack _bittorrent bug _bug buildhash _ispell builtin _builtin bunzip2 _bzip2 burst _mh bzcat _bzip2 bzip2 _bzip2 bzip2recover _bzip2 bzr _bzr c++ _gcc cabal _cabal cal _cal calendar _calendar cat _cat catchsegv _precommand cc _gcc ccal _ccal cd _cd cdbs-edit-patch _cdbs-edit-patch cdc _sccs cdcd _cdcd cdr _cdr cdrdao _cdrdao cdrecord _cdrecord ceilometer _openstack certtool _gnutls cftp _twisted chage _users chdir _cd chflags _chflags chfn _users chgrp _chown chimera _webbrowser chkconfig _chkconfig chmod _chmod chown _chown chpass _chsh chrt _chrt chsh _chsh ci _rcs cifsiostat _sysstat cinder _openstack ckeygen _twisted clang _gcc clang++ _gcc clay _clay clear _nothing cloudkitty _openstack cmp _cmp co _rcs comb _sccs combine _imagemagick combinediff _patchutils comm _comm command _command comp _mh compadd _compadd compdef _compdef composite _imagemagick compress _compress conch _twisted config.status _configure configure _configure convert _imagemagick coreadm _coreadm cowsay _cowsay cowthink _cowsay cp _cp cpio _cpio cplay _cplay cpupower _cpupower crsh _cssh cryptsetup _cryptsetup cscope _cscope csh _sh cssh _cssh csup _csup cu _cu curl _curl cut _cut cvs _cvs cvsup _cvsup cygcheck _cygcheck cygcheck.exe _cygcheck cygpath _cygpath cygpath.exe _cygpath cygrunsrv _cygrunsrv cygrunsrv.exe _cygrunsrv cygserver _cygserver cygserver.exe _cygserver cygstart _cygstart cygstart.exe _cygstart dak _dak darcs _darcs date _date dbus-monitor _dbus dbus-send _dbus dch _debchange dchroot _dchroot dchroot-dsa _dchroot-dsa dcop _dcop dcopclient _dcop dcopfind _dcop dcopobject _dcop dcopref _dcop dcopstart _dcop dcut _dcut dd _dd debchange _debchange debcheckout _debcheckout debdiff _debdiff debfoster _debfoster debsign _debsign declare _typeset defaults _defaults delta _sccs designate _openstack devtodo _devtodo df _df dhclient _dhclient dhclient3 _dhclient dhcpinfo _dhcpinfo dict _dict diff _diff diffstat _diffstat dig _dig dillo _webbrowser dircmp _directories dirs _dirs disable _disable disown _jobs_fg display _imagemagick dist _mh django-admin _django django-admin.py _django dladm _dladm dlocate _dlocate dmake _make dmesg _dmesg dmidecode _dmidecode dnf _dnf dnf-2 _dnf dnf-3 _dnf doas _doas domainname _yp dosdel _floppy dosread _floppy dpatch-edit-patch _dpatch-edit-patch dpkg _dpkg dpkg-buildpackage _dpkg-buildpackage dpkg-cross _dpkg-cross dpkg-deb _dpkg dpkg-query _dpkg dpkg-reconfigure _dpkg dpkg-repack _dpkg-repack dpkg-source _dpkg_source dput _dput dsh _dsh dtrace _dtrace du _du dumpadm _dumpadm dumper _dumper dumper.exe _dumper dupload _dupload dvibook _dvi dviconcat _dvi dvicopy _dvi dvidvi _dvi dvipdf _dvi dvips _dvi dviselect _dvi dvitodvi _dvi dvitype _dvi dwb _webbrowser eatmydata _precommand ecasound _ecasound echotc _echotc echoti _echoti egrep _grep elfdump _elfdump elinks _elinks elm _elm emulate _emulate enable _enable enscript _enscript env _env epdfview _pdf epsffit _psutils erb _ruby espeak _espeak etags _etags ethtool _ethtool eu-nm _nm eu-readelf _readelf eval _precommand eview _vim evim _vim evince _evince exec _precommand explodepkg _pkgtool export _typeset express _webbrowser extcheck _java extractres _psutils fakeroot _fakeroot false _nothing fc _fc fc-list _xft_fonts fc-match _xft_fonts feh _feh fetch _fetch fetchmail _fetchmail ffmpeg _ffmpeg fg _jobs_fg fgrep _grep figlet _figlet filterdiff _patchutils find _find findaffix _ispell finger _finger fink _fink firefox _mozilla fixdlsrps _psutils fixfmps _psutils fixmacps _psutils fixpsditps _psutils fixpspps _psutils fixscribeps _psutils fixtpps _psutils fixwfwps _psutils fixwpps _psutils fixwwps _psutils flasher _flasher flex _flex flipdiff _patchutils flist _mh flists _mh float _typeset flowadm _flowadm fmadm _fmadm fmttest _mh fned _zed fnext _mh folder _mh folders _mh fortune _fortune forw _mh fprev _mh freebsd-make _make freebsd-update _freebsd-update fsh _fsh fstat _fstat ftp _hosts functions _typeset fuser _fuser fusermount _fusermount fw_update _fw_update fwhois _whois g++ _gcc galeon _webbrowser gawk _awk gcc _gcc gccgo _go gchmod _chmod gcmp _cmp gcomm _comm gcore _gcore gcp _cp gdate _date gdb _gdb gdiff _diff gdu _du genisoimage _genisoimage get _sccs getafm _psutils getclip _getclip getclip.exe _getclip getconf _getconf getent _getent getfacl _getfacl getfacl.exe _getfacl getfattr _attr getmail _getmail getopts _vars gex _vim gfind _find ggv _gnome-gv ghostscript _gs ghostview _pspdf gid _id git _git git-buildpackage _git-buildpackage gitk _git gjoin _join glance _openstack gln _ln global _global gls _ls gm _graphicsmagick gmake _make gmd5sum _md5sum gmkdir _mkdir gmplayer _mplayer gnl _nl gnocchi _openstack gnome-gv _gnome-gv gnupod_INIT _gnupod gnupod_INIT.pl _gnupod gnupod_addsong _gnupod gnupod_addsong.pl _gnupod gnupod_check _gnupod gnupod_check.pl _gnupod gnupod_search _gnupod gnupod_search.pl _gnupod gnutls-cli _gnutls gnutls-cli-debug _gnutls god _od gofmt _go gpasswd _gpasswd gpatch _patch gpg _gpg gpg-zip _gpg gpg2 _gpg gpgv _gpg gphoto2 _gphoto2 gprof _gprof gqview _gqview gradle _gradle gradlew _gradle grail _webbrowser grep _grep grep-excuses _grep-excuses grepdiff _patchutils grm _rm groff _groff groupadd _user_admin groupdel _groups groupmod _user_admin groups _users growisofs _growisofs gs _gs gsbj _pspdf gsdj _pspdf gsdj500 _pspdf gsed _sed gsettings _gsettings gslj _pspdf gslp _pspdf gsnd _pspdf gsort _sort gstat _gstat gtar _tar gtouch _touch guilt _guilt guilt-add _guilt guilt-applied _guilt guilt-delete _guilt guilt-files _guilt guilt-fold _guilt guilt-fork _guilt guilt-header _guilt guilt-help _guilt guilt-import _guilt guilt-import-commit _guilt guilt-init _guilt guilt-new _guilt guilt-next _guilt guilt-patchbomb _guilt guilt-pop _guilt guilt-prev _guilt guilt-push _guilt guilt-rebase _guilt guilt-refresh _guilt guilt-rm _guilt guilt-series _guilt guilt-status _guilt guilt-top _guilt guilt-unapplied _guilt guniq _uniq gunzip _gzip gv _gv gview _vim gvim _vim gvimdiff _vim gwc _wc gxargs _xargs gzcat _gzip gzilla _webbrowser gzip _gzip hash _hash hdiutil _hdiutil head _head heat _openstack help _sccs hg _hg hilite _precommand history _fc host _hosts hotjava _webbrowser htop _htop hwinfo _hwinfo iceweasel _mozilla icombine _ispell iconv _iconv iconvconfig _iconvconfig id _id identify _imagemagick ifconfig _ifconfig ifdown _net_interfaces iftop _iftop ifup _net_interfaces ijoin _ispell import _imagemagick inc _mh includeres _psutils inetadm _inetadm info _texinfo infocmp _terminals initctl _initctl insmod _modutils install-info _texinfo installpkg _pkgtool integer _typeset interdiff _patchutils invoke-rc.d _invoke-rc.d ionice _ionice iostat _iostat ip _ip ipadm _ipadm ipset _ipset iptables _iptables iptables-restore _iptables iptables-save _iptables irb _ruby ironic _openstack irssi _irssi isag _sysstat ispell _ispell iwconfig _iwconfig j _j jadetex _tex jar _java jarsigner _java java _java javac _java javadoc _java javah _java javap _java jdb _java jexec _jexec jls _jls jobs _jobs_builtin joe _joe join _join jot _jot keystone _openstack keytool _java kfmclient _kfmclient kill _kill killall _killall killall5 _killall kioclient _kfmclient kldload _kld kldunload _kld knock _knock konqueror _webbrowser kpartx _kpartx kpdf _pdf ksh _sh kvno _kvno last _last lastb _last latex _tex latexmk _tex ldd _ldd lein _lein less _less let _math lftp _ncftp lha _lha light _webbrowser lighty-disable-mod _lighttpd lighty-enable-mod _lighttpd limit _limit links _links lintian _lintian lintian-info _lintian linux _uml lldb _lldb llvm-g++ _gcc llvm-gcc _gcc ln _ln loadkeys _loadkeys local _typeset locale _locale localedef _localedef locate _locate log _nothing logname _nothing look _look lore _twisted losetup _losetup lp _lp lpadmin _lp lpinfo _lp lpoptions _lp lpq _lp lpr _lp lprm _lp lpstat _lp ls _ls lscfg _lscfg lsdev _lsdev lsdiff _patchutils lslv _lslv lsmod _modutils lsof _lsof lspv _lspv lsusb _lsusb lsvg _lsvg ltrace _ltrace lynx _lynx lzcat _xz lzma _xz lzop _lzop m-a _module-assistant madison _madison magnum _openstack mail _mail mailx _mail make _make make-kpkg _make-kpkg makeinfo _texinfo makepkg _pkgtool man _man manage.py _django manhole _twisted manila _openstack mark _mh matlab _matlab mattrib _mtools mcd _mtools mcopy _mtools md5sum _md5sum mdadm _mdadm mdel _mtools mdeltree _mtools mdir _mtools mdu _mtools members _members mencal _mencal mere _mere merge _rcs mergechanges _mergechanges metaflac _metaflac mformat _mtools mgv _pspdf mhfixmsg _mh mhlist _mh mhmail _mh mhn _mh mhparam _mh mhpath _mh mhshow _mh mhstore _mh mii-tool _mii-tool mistral _openstack mixerctl _mixerctl mkdir _mkdir mkisofs _growisofs mkshortcut _mkshortcut mkshortcut.exe _mkshortcut mktunes _gnupod mktunes.pl _gnupod mkzsh _mkzsh mkzsh.exe _mkzsh mlabel _mtools mlocate _locate mmd _mtools mmm _webbrowser mmount _mtools mmove _mtools modinfo _modutils modprobe _modutils module _module module-assistant _module-assistant mogrify _imagemagick monasca _openstack mondoarchive _mondo montage _imagemagick moosic _moosic mosh _mosh mount _mount mozilla _mozilla mozilla-firefox _mozilla mozilla-xremote-client _mozilla mpc _mpc mplayer _mplayer mpstat _sysstat mrd _mtools mread _mtools mren _mtools msgchk _mh mt _mt mtn _monotone mtoolstest _mtools mtr _mtr mtype _mtools munchlist _ispell mupdf _pdf murano _openstack mush _mail mutt _mutt mx _hosts mysql _mysql_utils mysqladmin _mysql_utils mysqldiff _mysqldiff mysqldump _mysql_utils mysqlimport _mysql_utils mysqlshow _mysql_utils nail _mail native2ascii _java nautilus _nautilus nawk _awk nc _netcat ncal _cal ncftp _ncftp ncl _nedit nedit _nedit nedit-nc _nedit netcat _netcat netrik _webbrowser netscape _netscape netstat _netstat neutron _openstack new _mh newgrp _groups next _mh nice _nice nkf _nkf nl _nl nm _nm nmap _nmap nmblookup _samba nmcli _nmcli nocorrect _precommand noglob _precommand nohup _precommand notmuch _notmuch nova _openstack npm _npm ns _hosts nslookup _nslookup ntalk _other_accounts nvim _vim objdump _objdump od _od odme _object_classes odmget _object_classes odmshow _object_classes ogg123 _vorbis oggdec _vorbis oggenc _vorbis ogginfo _vorbis okular _okular open _open openstack _openstack opera _webbrowser opera-next _webbrowser osc _osc p4 _perforce p4d _perforce pack _pack packer _packer packf _mh parsehdlist _urpmi passwd _users patch _patch pax _pax pbuilder _pbuilder pcat _pack pcred _pids pdf2dsc _pdf pdf2ps _pdf pdffonts _pdf pdfimages _pdf pdfinfo _pdf pdfjadetex _tex pdflatex _tex pdfopt _pdf pdftex _tex pdftexi2dvi _texinfo pdftk _pdftk pdftopbm _pdf pdftops _pdf pdftotext _pdf perl _perl perldoc _perldoc pfctl _pfctl pfexec _pfexec pfiles _pids pflags _pids pgrep _pgrep php _php pick _mh picocom _picocom pidof _pidof pidstat _sysstat pigz _gzip pine _pine pinef _pine ping _ping piuparts _piuparts pkg _pkg5 pkg-config _pkg-config pkg_add _bsd_pkg pkg_create _bsd_pkg pkg_delete _bsd_pkg pkg_info _bsd_pkg pkgadd _pkgadd pkginfo _pkginfo pkgrm _pkgrm pkgtool _pkgtool pkill _pgrep pldd _pids pmake _make pman _perl_modules pmap _pids pmcat _perl_modules pmdesc _perl_modules pmeth _perl_modules pmexp _perl_modules pmfunc _perl_modules pmload _perl_modules pmls _perl_modules pmpath _perl_modules pmvers _perl_modules podgrep _perl_modules podpath _perl_modules podtoc _perl_modules poff _pon policytool _java pon _pon popd _directory_stack portaudit _portaudit portlint _portlint portmaster _portmaster portsnap _portsnap postconf _postfix postqueue _postfix postsuper _postfix powerd _powerd prcs _prcs prev _mh print _print printenv _printenv printf _print procstat _procstat prompt _prompt prove _prove prs _sccs prstat _prstat prt _sccs prun _pids ps _ps ps2ascii _pspdf ps2epsi _postscript ps2pdf _postscript ps2pdf12 _postscript ps2pdf13 _postscript ps2pdf14 _postscript ps2pdfwr _postscript ps2ps _postscript psbook _psutils pscp _pscp pscp.exe _pscp psed _sed psig _pids psmerge _psutils psmulti _postscript psnup _psutils psresize _psutils psselect _psutils pstack _pids pstoedit _pspdf pstop _pids pstops _psutils pstotgif _pspdf pswrap _postscript ptree _ptree pump _pump pushd _cd putclip _putclip putclip.exe _putclip pwait _pids pwdx _pids pyhtmlizer _twisted qdbus _qdbus qiv _qiv qtplay _qtplay querybts _bug quilt _quilt r _fc raggle _raggle rake _rake ranlib _ranlib rar _rar rc _sh rcctl _rcctl rcp _rlogin rcs _rcs rcsdiff _rcs rdesktop _rdesktop read _read readelf _readelf readonly _typeset readshortcut _readshortcut readshortcut.exe _readshortcut rebootin _rebootin refile _mh rehash _hash reload _initctl removepkg _pkgtool remsh _rlogin renice _renice repl _mh reportbug _bug reprepro _reprepro restart _initctl retawq _webbrowser rgview _vim rgvim _vim ri _ri rlogin _rlogin rm _rm rmadison _madison rmdel _sccs rmdir _directories rmf _mh rmic _java rmid _java rmiregistry _java rmm _mh rmmod _modutils rpm _rpm rpmbuild _rpmbuild rrdtool _rrdtool rsh _rlogin rsync _rsync rtin _tin rubber _rubber rubber-info _rubber rubber-pipe _rubber ruby _ruby run-help _run-help rup _hosts rusage _precommand rview _vim rvim _vim rwho _hosts rxvt _urxvt s2p _sed sabcmd _sablotron sact _sccs sadf _sysstat sahara _openstack sar _sysstat savecore _savecore scan _mh sccs _sccs sccsdiff _sccs sched _sched schedtool _schedtool schroot _schroot scl _scl scp _ssh screen _screen script _script scriptreplay _script sed _sed senlin _openstack serialver _java service _service set _set setfacl _setfacl setfacl.exe _setfacl setfattr _attr setopt _setopt setsid _precommand setxkbmap _setxkbmap sftp _ssh sh _sh shift _arrays show _mh showchar _psutils showmount _showmount sisu _sisu skipstone _webbrowser slitex _tex slocate _locate slogin _ssh slrn _slrn smbclient _samba smbcontrol _samba smbstatus _samba smit _smit smitty _smit snoop _snoop soa _hosts socket _socket sockstat _sockstat softwareupdate _softwareupdate sort _sort sortm _mh source _source spamassassin _spamassassin splitdiff _patchutils sqlite _sqlite sqlite3 _sqlite sqsh _sqsh sr _surfraw srptool _gnutls ss _ss ssh _ssh ssh-add _ssh ssh-agent _ssh ssh-copy-id _ssh ssh-keygen _ssh sshfs _sshfs star _tar start _initctl stat _stat status _initctl stg _stgit stop _initctl strace _strace strace64 _strace strftime _strftime strip _strip stty _stty su _su sudo _sudo sudoedit _sudo surfraw _surfraw sv _runit svcadm _svcadm svccfg _svccfg svcprop _svcprop svcs _svcs svn _subversion svn-buildpackage _svn-buildpackage svnadmin _subversion svnadmin-static _subversion swift _openstack sync _nothing sysctl _sysctl sysrc _sysrc systat _systat system_profiler _system_profiler tail _tail talk _other_accounts tap2deb _twisted tap2rpm _twisted tapconvert _twisted tar _tar tardy _tardy tcp_open _tcpsys tcpdump _tcpdump tcptraceroute _tcptraceroute tcsh _sh tda _devtodo tdd _devtodo tde _devtodo tdr _devtodo telnet _telnet tex _tex texi2any _texinfo texi2dvi _texinfo texi2pdf _texinfo texindex _texinfo tg _topgit tidy _tidy tig _tig time _precommand times _nothing tin _tin tkconch _twisted tkinfo _texinfo tla _tla tmux _tmux todo _devtodo todo.sh _todo.sh toilet _toilet top _top totdconfig _totd touch _touch tpb _tpb tpconfig _tpconfig tpkg-debarch _toolchain-source tpkg-install _toolchain-source tpkg-install-libc _toolchain-source tpkg-make _toolchain-source tpkg-update _toolchain-source tput _tput tr _tr tracepath _tracepath tracepath6 _tracepath traceroute _hosts trap _trap tree _tree trial _twisted trove _openstack true _nothing truss _truss tryaffix _ispell ttyctl _ttyctl tunctl _uml tune2fs _tune2fs tunes2pod _gnupod tunes2pod.pl _gnupod twidge _twidge twistd _twisted txt _hosts type _which typeset _typeset ulimit _ulimit uml_mconsole _uml uml_moo _uml uml_switch _uml umount _mount unace _unace unalias _aliases uname _uname uncompress _compress unexpand _unexpand unfunction _functions unget _sccs unhash _unhash uniq _uniq unison _unison units _units unlimit _limits unlzma _xz unpack _pack unpigz _gzip unrar _rar unset _vars unsetopt _setopt unwrapdiff _patchutils unxz _xz unzip _zip update-alternatives _update-alternatives update-rc.d _update-rc.d upgradepkg _pkgtool urpme _urpmi urpmf _urpmi urpmi _urpmi urpmi.addmedia _urpmi urpmi.removemedia _urpmi urpmi.update _urpmi urpmq _urpmi urxvt _urxvt urxvt256c _urxvt urxvt256c-ml _urxvt urxvt256c-mlc _urxvt urxvt256cc _urxvt urxvtc _urxvt uscan _uscan useradd _user_admin userdel _users usermod _user_admin uzbl _uzbl uzbl-browser _uzbl uzbl-tabbed _uzbl val _sccs valgrind _valgrind vared _vared vcsh _vcsh vim _vim vim-addons _vim-addons vimdiff _vim virsh _libvirt virt-admin _libvirt virt-host-validate _libvirt virt-pki-validate _libvirt virt-xml-validate _libvirt vmstat _vmstat vncserver _vnc vncviewer _vnc vorbiscomment _vorbiscomment vserver _vserver vux _vux vuxctl _vux w3m _w3m wait _wait wajig _wajig wanna-build _wanna-build watch _watch wc _wc wget _wget what _sccs whatis _man whence _which where _which whereis _whereis which _which whoami _nothing whois _whois whom _mh wiggle _wiggle wodim _cdrecord wpa_cli _wpa_cli write _users_on www _webbrowser xargs _xargs xauth _xauth xautolock _xautolock xclip _xclip xdpyinfo _x_utils xdvi _xdvi xelatex _tex xetex _tex xev _x_utils xfd _x_utils xfig _xfig xfontsel _x_utils xfreerdp _rdesktop xhost _x_utils xkill _x_utils xli _xloadimage xloadimage _xloadimage xlsatoms _x_utils xlsclients _x_utils xmllint _xmlsoft xmms2 _xmms2 xmodmap _xmodmap xmosaic _webbrowser xon _x_utils xournal _xournal xpdf _xpdf xping _hosts xprop _x_utils xrandr _xrandr xrdb _x_utils xscreensaver-command _xscreensaver xset _xset xsetbg _xloadimage xsetroot _x_utils xsltproc _xmlsoft xterm _xterm xtightvncviewer _vnc xtp _imagemagick xv _xv xview _xloadimage xvnc4viewer _vnc xvncviewer _vnc xwd _x_utils xwininfo _x_utils xwit _xwit xwud _x_utils xxd _xxd xz _xz xzcat _xz yafc _yafc yast _yast yast2 _yast ypbind _yp ypcat _yp ypmatch _yp yppasswd _yp yppoll _yp yppush _yp ypserv _yp ypset _yp ypwhich _yp ypxfr _yp ytalk _other_accounts yum _yum zargs _zargs zathura _pspdf zcalc _zcalc zcat _zcat zcompile _zcompile zcp _zmv zdelattr _zattr zdump _zdump zed _zed zegrep _grep zen _webbrowser zf_chgrp _chown zf_chown _chown zf_ln _ln zf_mkdir _mkdir zf_rm _rm zf_rmdir _directories zfgrep _grep zfs _zfs zgetattr _zattr zgrep _grep zip _zip zipinfo _zip zle _zle zlistattr _zattr zln _zmv zlogin _zlogin zmail _mail zmodload _zmodload zmv _zmv zone _hosts zoneadm _zoneadm zpool _zpool zpty _zpty zsetattr _zattr zsh _zsh zsh-mime-handler _zsh-mime-handler zsocket _zsocket zstat _stat zstyle _zstyle ztodo _ztodo zxpdf _xpdf zypper _zypper )
+/Users/vivo/.zcompdump-Victor’s MacBook Pro-5.3.1:1485> zle -C _history-complete-newer .complete-word _history_complete_word
+/Users/vivo/.zcompdump-Victor’s MacBook Pro-5.3.1:1486> zle -C _history-complete-older .complete-word _history_complete_word
+/Users/vivo/.zcompdump-Victor’s MacBook Pro-5.3.1:1503> bindkey '^[,' _history-complete-newer
+/Users/vivo/.zcompdump-Victor’s MacBook Pro-5.3.1:1504> bindkey '^[/' _history-complete-older
+/Users/vivo/.zcompdump-Victor’s MacBook Pro-5.3.1:1507> autoload -Uz _brew _brew_cask _git _hg _j _lein _packer _tig _SUSEconfig _a2ps _a2utils _aap _absolute_command_paths _acpi _acpitool _acroread _adb _add-zle-hook-widget _add-zsh-hook _alias _aliases _all_labels _all_matches _alternative _analyseplugin _ant _antiword _apachectl _apm _approximate _apt _apt-file _apt-move _apt-show-versions _aptitude _arch_archives _arch_namespace _arg_compile _arguments _arp _arping _arrays _assign _at _attr _augeas _auto-apt _autocd _awk _axi-cache _bash_completions _baudrates _baz _be_name _beadm _beep _bibtex _bind_addresses _bindkey _bison _bittorrent _bogofilter _bpython _brace_parameter _brctl _bsd_pkg _bsdconfig _bsdinstall _btrfs _bts _bug _builtin _bzip2 _bzr _cabal _cache_invalid _cal _calendar _call_function _canonical_paths _cat _ccal _cd _cdbs-edit-patch _cdcd _cdr _cdrdao _cdrecord _chflags _chkconfig _chmod _chown _chrt _chsh _clay _cmdstring _cmp _combination _comm _command _command_names _comp_locale _compadd _compdef _complete _complete_debug _complete_help _complete_help_generic _complete_tag _completers _compress _condition _configure _coreadm _correct _correct_filename _correct_word _cowsay _cp _cpio _cplay _cpupower _cryptsetup _cscope _cssh _csup _ctags_tags _cu _curl _cut _cvs _cvsup _cygcheck _cygpath _cygrunsrv _cygserver _cygstart _dak _darcs _date _date_formats _dates _dbus _dchroot _dchroot-dsa _dcop _dcut _dd _deb_architectures _deb_packages _debbugs_bugnumber _debchange _debcheckout _debdiff _debfoster _debsign _default _defaults _delimiters _describe _description _devtodo _df _dhclient _dhcpinfo _dict _dict_words _diff _diff_options _diffstat _dig _dir_list _directories _directory_stack _dirs _disable _dispatch _django _dladm _dlocate _dmesg _dmidecode _dnf _doas _domains _dpatch-edit-patch _dpkg _dpkg-buildpackage _dpkg-cross _dpkg-repack _dpkg_source _dput _dsh _dtrace _du _dumpadm _dumper _dupload _dvi _dynamic_directory_name _ecasound _echotc _echoti _elfdump _elinks _elm _email_addresses _emulate _enable _enscript _env _equal _espeak _etags _ethtool _evince _expand _expand_alias _expand_word _extensions _external_pwds _fakeroot _fc _feh _fetch _fetchmail _ffmpeg _figlet _file_descriptors _file_systems _files _find _find_net_interfaces _finger _fink _first _flasher _flex _floppy _flowadm _fmadm _fortune _freebsd-update _fsh _fstat _functions _fuse_arguments _fuse_values _fuser _fusermount _fw_update _gcc _gcore _gdb _generic _genisoimage _getclip _getconf _getent _getfacl _getmail _git _git-buildpackage _global _global_tags _globflags _globqual_delims _globquals _gnome-gv _gnu_generic _gnupod _gnutls _go _gpasswd _gpg _gphoto2 _gprof _gqview _gradle _graphicsmagick _grep _grep-excuses _groff _groups _growisofs _gs _gsettings _gstat _guard _guilt _gv _gzip _hash _have_glob_qual _hdiutil _head _hg _history _history_complete_word _history_modifiers _hosts _htop _hwinfo _iconv _iconvconfig _id _ifconfig _iftop _ignored _imagemagick _in_vared _inetadm _init_d _initctl _invoke-rc.d _ionice _iostat _ip _ipadm _ipset _iptables _irssi _ispell _iwconfig _jails _java _java_class _jexec _jls _jobs _jobs_bg _jobs_builtin _jobs_fg _joe _join _jot _kfmclient _kill _killall _kld _knock _kpartx _kvno _last _ld_debug _ldd _less _lha _libvirt _lighttpd _limit _limits _links _lintian _list _list_files _lldb _ln _loadkeys _locale _localedef _locales _locate _logical_volumes _look _losetup _lp _ls _lscfg _lsdev _lslv _lsof _lspv _lsusb _lsvg _ltrace _lynx _lzop _mac_applications _mac_files_for_application _madison _mail _mailboxes _main_complete _make _make-kpkg _man _match _math _math_params _matlab _md5sum _mdadm _members _mencal _menu _mere _mergechanges _message _metaflac _mh _mii-tool _mime_types _mixerctl _mkdir _mkshortcut _mkzsh _module _module-assistant _module_math_func _modutils _mondo _monotone _moosic _mosh _most_recent_file _mount _mozilla _mpc _mplayer _mt _mtools _mtr _multi_parts _mutt _my_accounts _mysql_utils _mysqldiff _nautilus _ncftp _nedit _net_interfaces _netcat _netscape _netstat _newsgroups _next_label _next_tags _nice _nkf _nl _nm _nmap _nmcli _normal _nothing _notmuch _npm _nslookup _objdump _object_classes _object_files _od _okular _oldlist _open _openstack _options _options_set _options_unset _osc _other_accounts _pack _parameter _parameters _patch _patchutils _path_commands _path_files _pax _pbm _pbuilder _pdf _pdftk _perforce _perl _perl_basepods _perl_modules _perldoc _pfctl _pfexec _pgrep _php _physical_volumes _pick_variant _picocom _pidof _pids _pine _ping _piuparts _pkg-config _pkg5 _pkg_instance _pkgadd _pkginfo _pkgrm _pkgtool _pon _portaudit _portlint _portmaster _ports _portsnap _postfix _postscript _powerd _prcs _precommand _prefix _print _printenv _printers _procstat _prompt _prove _prstat _ps _ps1234 _pscp _pspdf _psutils _ptree _pump _putclip _pydoc _python _python_modules _qdbus _qemu _qiv _qtplay _quilt _raggle _rake _ranlib _rar _rcctl _rcs _rdesktop _read _read_comp _readelf _readshortcut _rebootin _redirect _regex_arguments _regex_words _remote_files _renice _reprepro _requested _retrieve_cache _retrieve_mac_apps _ri _rlogin _rm _rpm _rpmbuild _rrdtool _rsync _rubber _ruby _run-help _runit _sablotron _samba _savecore _sccs _sched _schedtool _schroot _scl _screen _script _sed _sep_parts _sequence _service _services _set _set_command _setfacl _setopt _setup _setxkbmap _sh _showmount _signals _sisu _slrn _smit _snoop _socket _sockstat _softwareupdate _sort _source _spamassassin _sqlite _sqsh _ss _ssh _sshfs _stat _stgit _store_cache _strace _strftime _strip _stty _su _sub_commands _subscript _subversion _sudo _suffix_alias_files _surfraw _svcadm _svccfg _svcprop _svcs _svcs_fmri _svn-buildpackage _sys_calls _sysctl _sysrc _sysstat _systat _system_profiler _tags _tail _tar _tar_archive _tardy _tcpdump _tcpsys _tcptraceroute _telnet _terminals _tex _texi _texinfo _tidy _tiff _tilde _tilde_files _time_zone _tin _tla _tmux _todo.sh _toilet _toolchain-source _top _topgit _totd _touch _tpb _tpconfig _tput _tr _tracepath _trap _tree _truss _ttyctl _ttys _tune2fs _twidge _twisted _typeset _ulimit _uml _unace _uname _unexpand _unhash _uniq _unison _units _update-alternatives _update-rc.d _urls _urpmi _urxvt _uscan _user_admin _user_at_host _user_expand _user_math_func _users _users_on _uzbl _valgrind _value _values _vared _vars _vcsh _vim _vim-addons _vmstat _vnc _volume_groups _vorbis _vorbiscomment _vserver _vux _w3m _wait _wajig _wakeup_capable_devices _wanna-build _wanted _watch _watch-snoop _wc _webbrowser _wget _whereis _which _whois _widgets _wiggle _wpa_cli _x_arguments _x_borderwidth _x_color _x_colormapid _x_cursor _x_display _x_extension _x_font _x_geometry _x_keysym _x_locale _x_modifier _x_name _x_resource _x_selection_timeout _x_title _x_utils _x_visual _x_window _xargs _xauth _xautolock _xclip _xdvi _xfig _xft_fonts _xloadimage _xmlsoft _xmms2 _xmodmap _xournal _xpdf _xrandr _xscreensaver _xset _xt_arguments _xt_session_id _xterm _xv _xwit _xxd _xz _yafc _yast _yodl _yp _yum _zargs _zattr _zcalc _zcalc_line _zcat _zcompile _zdump _zed _zfs _zfs_dataset _zfs_keysource_props _zfs_pool _zftp _zip _zle _zlogin _zmodload _zmv _zoneadm _zones _zpool _zpty _zsh _zsh-mime-handler _zsocket _zstyle _ztodo _zypper
+zsh-repro:3> alias 'h=history'

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-01-07  1:45 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-05 16:21 Bug report: segfault when pasting (function and alias names collide) Victor Volle
2017-01-06  2:29 ` Daniel Shahaf
2017-01-06 12:26   ` Victor Volle
2017-01-06 16:21     ` Daniel Shahaf
2017-01-06 18:56       ` Victor Volle
2017-01-06 16:40   ` Bart Schaefer

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).