[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.191.233.251: ~ $
# Configure the completion system.

emulate -L zsh
setopt extendedglob

local key
local compcontext=-default-

__ci_tidyup() {
  unfunction -m __ci_\* 2>/dev/null
  unfunction compinstall
  autoload -Uz compinstall
}

__ci_newline() {
  read -k \
    key"?${1:---- Hit newline to continue or \`q' to exit without saving --- }"
  print
  if [[ $key = [qQ] ]]; then
    print "compinstall aborted."
    __ci_tidyup
    return 1
  else
    return 0
  fi
}

typeset startline='# The following lines were added by compinstall'
typeset endline='# End of lines added by compinstall'
typeset ifile line fpath_line compinit_args opt detect basic line2
typeset -A styles
typeset match mbegin mend warn_unknown warn_old warn_comment output
integer lines_found

while getopts "do" opt; do
  case $opt in
    (d)
    # Detect an existing compinstall setup.
    detect=1
    ;;

    (o)
    # Output basic setup information only.
    basic=1
    ;;
  esac
done

#
# Check the user's .zshrc, if any.
#
# This relies on the stuff we find being only minimally edited from
# the stuff we originally saved.  A better way of doing this would
# almost certainly be to use the style mechanism directly:  save the
# current styles in a variable, delete all styles, read in and evaluate
# any styles found, manipulate styles directly using zstyle, write out
# using zstyle -L, and if necessary restore the original styles.  One
# day I may even do that.
#

__ci_test_ifile() {
  [[ -f $1 ]] && grep "$endline" $1 >/dev/null 2>&1
}

local foundold=false
if zstyle -s :compinstall filename ifile &&
  __ci_test_ifile $ifile; then
  foundold=true
else
  ifile=${ZDOTDIR:-~}/.zshrc
  if __ci_test_ifile ${ZDOTDIR:-~}/.compinstall; then
    ifile=${ZDOTDIR:-~}/.compinstall
    foundold=true
  elif __ci_test_ifile $ifile; then
    foundold=true
  fi
fi


if [[ -n $detect ]]; then
  __ci_tidyup
  [[ $foundold = true ]]
  return
fi


__ci_output() {
  print -r "$startline"
  [[ -n $output ]] && print -r "$output"
  if [[ -n $ifile ]]; then
    line="zstyle :compinstall filename ${(qq)ifile}"
    print -r "$line"
    eval "$line"
  fi

  [[ -n $fpath_line ]] && print -r "$fpath_line"

  print -r "
autoload -Uz compinit
compinit${compinit_args:+ $compinit_args}"

  print -r "$endline"
}


if [[ -n $basic ]]; then
  __ci_output
  __ci_tidyup
  return
fi

local newifile=$ifile
if [[ $foundold = true ]]; then
  if [[ $newifile != [~/]* ]]; then
    newifile=${ZDOTDIR:-~}/$newifile
    print "[Existing completion definition file is not absolute path:
updating to $newifile]"
  fi
  print "I have found completion definitions in $newifile.
If you want me to read these, just hit return.  Otherwise, edit the file
name to look for definitions somewhere else, or delete the whole line
in order not to use existing definitions."
  vared -ch -p 'file> ' newifile
  if [[ -n $newifile && $newifile != [/~]* ]]; then
    newifile=$PWD/$newifile
    print "[Not absolute path: updating to $newifile]"
  fi
  [[ -z $newifile || ! -f $newifile ]] && foundold=false
else
  print "I haven't found any existing completion definitions.
If you have some already defined by compinstall, edit the name of the
file where these can be found.  Note that this will only work if they
are exactly the form in which compinstall inserted them.  If you leave
the line as it is, or empty, I won't search."
  while true;  do
    vared -ch -p 'file> ' newifile || break
    if [[ -n $newifile && $newifile != [/~]* ]]; then
      newifile=$PWD/$newifile
      print "[Not absolute path: updating to $newifile]"
    fi
    if [[ -n $newifile && $ifile != $newifile ]]; then
      if __ci_test_ifile $newifile; then
        foundold=true
	break
      fi
      print "I couldn't find any definitions there.  Edit a new filename, or
leave the line blank to ignore it."
    else
      break
    fi
  done
fi
ifile=${~newifile}

if [[ $foundold = true ]]; then
  sed -n "/^[ 	]*$startline/,/^[ 	]*$endline/p" $ifile |
  # We can't use the default read behaviour to handle continuation lines
  # since it messes up internal backslashes.
  while read -r line; do
    # detect real continuation backslashes by checking there are an
    # odd number together.  i think this is reliable since the only
    # other way of quoting a backslash involves following it with
    # a closing quote.
    while [[ $line = *\\ ]]; do
      line2=${(M)line%%\\##}
      (( ${#line2} & 1 )) || break
      read -r line2 || break
      line="${line[1,-2]}$line2"
    done
    (( lines_found++ ))
    if [[ $line = *'$fpath'* ]]; then
      fpath_line=$line
      if [[ $line != *\) ]]; then
        while read -r line; do
          fpath_line="$fpath_line
$line"
          [[ $line = *\) ]] && break
        done
      fi
    elif [[ $line = (#b)[[:blank:]]#zstyle[[:blank:]]##(\'[^\']#\')\
[[:blank:]]##([^[:blank:]]##)[[:blank:]]##(*) ]]; then
      styles[$match[2]]="${styles[$match[2]]:+${styles[$match[2]]}
}${(Q)match[1]}
${match[3]}"
    elif [[ $line = [[:blank:]]#compconf* ]]; then
      warn_old=1
    elif [[ $line == $startline || $line == $endline ]]; then
      # no-op
    elif [[ $line = [[:blank:]]#\#* ]]; then
      warn_comment=1
    elif [[ $line = [[:blank:]]#compinit[[:blank:]]##(#b)([^[:blank:]]*) ]]
    then
      compinit_args=$match[1]
    elif [[ $line != [[:blank:]]# &&
      $line != [[:blank:]]#'autoload '*' compinit' &&
      $line != [[:blank:]]#compinit &&
      $line != [[:blank:]]#zstyle[[:blank:]]#:compinstall* ]]; then
      warn_unknown="${warn_unknown:+$warn_unknown
}$line"
    fi
  done
fi

#
# Print warnings about what we found in .zshrc.
#

if [[ -n $warn_old ]]; then
  print "\
WARNING: your configuration appears to contain commands for the 3.1.6
configuration system.  You will have to reconfigure from scratch and the
existing configuration commands will be overwritten.  If you wish to preserve
the old commands, you should quit, copy them somewhere else, then rerun
compinstall.  Sorry."
elif [[ -n $warn_unknown ]]; then
  print "\
WARNING: your configuration contains bits not understood by compinstall,
which will not be retained (shown below).  If you wish to retain these, you
should quit, copy them somewhere else, and then rerun compinstall.

$warn_unknown"
elif [[ -n $warn_comment ]]; then
  print "All the comments in your configuration section will be lost.
If you want to keep them, you should copy them somewhere else first."
elif (( ! $lines_found )); then
  print "Starting a new completion configuration from scratch."
  if [[ -n $ifile && ! -d $ifile ]]; then
    print -n "This will be "
    if [[ ! -f $ifile ]]; then
      print "written to the new file $ifile."
    elif [[ ! -w $ifile ]]; then
      print "written to the file ~/.compinstall for copying to $ifile."
      ifile=$HOME/.compinstall
    else
      print "appended to the file $ifile.  It is up to you to ensure
that these lines are actually executed.  They will not be if your .zshrc
usually returns before the end."
    fi
  fi
fi
print "Note that you will be given a chance to save the new setup
somewhere else at the end."


__ci_newline || return 1


typeset d compdir subdirs lines

#
# Make sure we have the completion functions in $fpath.
#

__ci_set_compdir() {
  for d in $*; do
    # If we find both the functions more than once, assume the later
    # one is the standard set.
    if [[ -f $d/compinit && -f $d/compdump ]]; then
      compdir=$d
    fi
  done
}

__ci_set_compdir $fpath

if [[ -d $compdir/Base/Core ]]; then
  subdirs=2
elif [[ -d $compdir/Base ]]; then
  subdirs=1
  ### compdir=${compdir:h}
fi

if [[ -z $compdir ]]; then
  # Start up a new zsh and get its default fpath.  If some swine has
  # tinkered with this in /etc/zshenv we're out of luck.
  lines=(${(f)"$(zsh -fc 'print -l $ZSH_VERSION $fpath')"})
  line=$lines[1]
  shift lines
  # If the zsh in that path isn't right, maybe the user's shell is elsewhere.
  if [[ $line != $ZSH_VERSION && -x $SHELL ]]; then
    lines=(${(f)"$($SHELL -fc 'print -l $ZSH_VERSION $fpath' 2>/dev/null)"})
    line=$lines[1]
    shift lines
  fi
  if [[ $line != $ZSH_VERSION ]]; then
    print "Hmmm, the zsh in your path is not what's running, nor is \$SHELL.
That's bad.
"
  fi
  __ci_set_compdir $lines
  if [[ -n $compdir ]]; then
    print "\
I've found the completion directories and will add them to your \$fpath,
but they should already be there at shell startup, so something (probably
an unconditional assignment in a startup file) is taking them out.  You
might want to check this, although what I'm doing should work."
    if [[ -n $fpath_line ]]; then
      print "\

What's more, there is already an \$fpath assignment in your completion
setup.  This gives me cause for concern.  I will override this, but don't
be surprised if it doesn't go according to plan.  If you have not
initialised completion in this shell, you should do so, then run
compinstall again."
    fi
  fi
  if [[ $subdirs = 2 ]]; then
    fpath_line=($compdir/[A-Z]*/[A-Z]*)
    fpath_line="fpath=($fpath ${(F)fpath_line})"
  elif [[ -n $subdirs ]]; then
    fpath_line=($compdir/[A-Z]*)
    fpath_line="fpath=($fpath ${(F)fpath_line})"
  fi
else
  if [[ $subdirs = 2 ]]; then
    print "Completion directories $compdir/*/*
are already in your \$fpath, good."
  elif [[ -n $subdirs ]]; then
    print "Completion directories $compdir/*
are already in your \$fpath, good."
  else
    print "Completion directory $compdir
is already in your \$fpath, good."
  fi
  if [[ -n $fpath_line ]]; then
    print "I shall keep the existing \$fpath=( ... ) assignment."
  fi
fi

if [[ -z $compdir ]]; then
  print "\
The zsh in your path doesn't seem to have completion directories in the
function autoload path (\$fpath).  This suggests the shell wasn't installed
for completion.  If you want to use it, you will need to locate all the
completion functions yourself and install them in your \$fpath.  I will
continue, but don't expect this to have much effect until you do.

If you are planning to continue using the old compctl system for
completion, compinstall won't do you any good anyway."
fi

__ci_newline || return 1


#
# Code for changing styles
#

typeset defcontext=":completion:*"
typeset curcontext=$defcontext

#
# Utility functions
#

#
# Get the style $1 for $curcontext into $2.
#
__ci_get_this_style() {
  typeset -A tassoc
  local style=$1 scalar=$2

  tassoc=(${(f)styles[$style]})
  eval "$scalar=\${tassoc[\$curcontext]}"
}

#
# Set the style $1 for $curcontext using scalar $2 for the value for this
# context.  If $2 is null, delete the context (this may not be correct for
# all styles).  Don't do any extra quotation.
# $2 gives the name of the scalar for symmetry with __ci_get_this_style.
#
__ci_set_this_style() {
  local style=$1 scalar=$2 k
  typeset -A tassoc
  tassoc=(${(f)styles[$style]})

  if [[ -n ${(P)scalar} ]]; then
    tassoc[$curcontext]=${(P)scalar}
  else
    unset "tassoc[$curcontext]"
  fi

  styles[$style]=
  for k in ${(ko)tassoc}; do
    styles[$style]="${styles[$style]:+$styles[$style]
}$k
${tassoc[$k]}"
  done
}

#
# Functions displaying menus
#

__ci_change_context() {
  clear
  print "\
             *** compinstall: change context ***

The context tells the completion system under what circumstances your
value will be used.  It has this form:
  :completion:<function-name>:<completer>:<command>:<argument>:<tag>
See the documentation for more detail on each of these components.  The
default context \`$defcontext' matches everywhere in completion, unless you
define a more specific pattern which matches the completion context being
used. \`More specific' means either a string instead of a pattern, or a
longer pattern instead of a shorter pattern.

Edit a new context, or leave the line blank to reset the context to the
default value.  Note that you do not require quotes around the context,
which will automatically be added later.  Line editing and history are
available.
"

  vared -eh -p 'context> ' curcontext
  [[ -z $curcontext ]] && curcontext=$defcontext
}


__ci_toggle_completer() {
  # used locally within __ci_do_completers
  if [[ -n $completers[$1] ]]; then
    completers[$1]=
  else
    completers[$1]=1
  fi
}

__ci_do_minor_completer_options() {
  # Set the options for the minor completers.
  local key cond word olist omenu moriginal aspace tmparr
  __ci_get_this_style condition cond
  [[ -n $cond ]] && cond=${(Q)cond}
  __ci_get_this_style word word
  __ci_get_this_style old-list olist
  __ci_get_this_style old-menu omenu
  __ci_get_this_style match-original moriginal
  __ci_get_this_style add-space aspace

  while true; do

    # insert-unambiguous can be handled somewhere else.
    clear
    print "\
              *** compinstall: minor completer options ***

Current context: $curcontext

l.     Set options for _list: condition for delay and comparison.
o.     Set options for _oldlist: when to keep old list.
m.     Set options for _match: whether to assume a \`*' at the cursor.
p.     Set options for _prefix: whether to add a space before the suffix.

q.     Return to the previous menu without saving.
0.     Done setting completer options.
"

    read -k key'?--- Hit selection --- '
    print

    [[ $key = 0 ]] && break

    case $key in
      [lL]) print "\
You can set a condition under which the _list completer will delay completion
until the second keypress.  It should evaluate to a number; a non-zero value
turns this behaviour on.  It can include parameters, in particular NUMERIC
to refer to a numeric argument.  For example, \`NUMERIC != 1' forces the
delay unless you give an argument 1 to the command.  Leave it blank to
assume the condition is true."
            vared -eh -c -p 'condition> ' cond
	    print -n "
_list will usually compare the contents of the entire line with its previous
contents to decided if it has been changed since the last keypress.  You
can instead perform this comparison on just the current word, ignoring
the rest of the command line.  Do you want to do this? (y/n) [n] "
	    word=
            read -q key && word=true
	    print
	    ;;
      [oO]) print "\
_oldlist can keep a generated completion list for reshowing in the usual
way, e.g. with ^D, even if the list was generated by some special completion
command.  The default behaviour of _oldlist is to show this list if it was
not already visible, otherwise to generate the standard completion listing,
but you can force it always to be shown, or make it never shown.
Alternatively, you can specify a list of completers for which _oldlist will
be used.  Choose:

d.    Default behaviour.
a.    Always show old list.
n.    Never show old list.
s.    Specify a list of completers.
"

            while true; do
	      read -k key'?--- Hit selection --- '
	      print
	      case $key in
		[dD]) olist=
		   ;;
		[aA]) olist=always
		      ;;
		[nN]) olist=never
		      ;;
		[sS]) olist=
		      tmparr=(_complete _approximate _correct _match _expand)
		      while true; do
			clear
			print "\
     *** compinstall:  choosing completers to have _oldlist behaviour ***

Type any of:

1.  _complete
2.  _approximate
3.  _correct
4.  _match
5.  _expand

or 0 to end, or - to delete the last choice."
			if [[ -n $olist ]]; then
			  print "\
Current choices:
  $olist"
			fi
			read -k key'?--- Hit selection --- '
			print
			case $key in
			  0) break
			     ;;
			  -) olist=(${olist[1,-2]})
			     ;;
			  [1-5]) olist=($olist $tmparr[$key])
			         ;;
			esac
                      done
		      ;;
		*) print "Type one of d, a, n or s."
		   continue
		   ;;
	      esac
	      break
	    done

	    print -n "
_oldlist can keep the old completion list for use in menu completion, e.g. by
repeatedly hitting tab, even if the list was generated by some special
completion command.  This is the default behaviour of _oldlist, but
you can turn it off, so that hitting tab would use the standard completion
list.

Do you want to turn it off? (y/n) [n] "
            omenu=
	    read -q key && omenu=false
	    ;;
      [mM]) print "\
The _match completer will usually assume there is a \`*' at the cursor
position when trying pattern matches.  For example, \`f*n<TAB>e' would
be able to complete to \`filename', not just to patterns matching \`f*ne'.
(Note that this assumes you have the option COMPLETE_IN_WORD set, else all
completion takes place at the end of the word.)  You can tell _match not
to assume there is a \`*', or to try first without the \`*', then with it.
Type one of:

a.     Always assume \`*' at cursor position.
n.     Never assume \`*' at cursor position.
w.     Try without the \`*', then with it if that fails."
            while true; do
	      read -k key'?--- Hit selection --- '
	      print
	      case $key in
		a) moriginal=
		   ;;
		n) moriginal=only
		   ;;
		w) moriginal=both
		   ;;
		*) print "Type one of a, n or w."
		   continue
		   ;;
	      esac
	      break
	    done
            ;;
      [pP]) print -n "\
The _prefix completer completes only what is behind the cursor, ignoring
completely what is after, even if there is no space at the cursor position.
However, you can force it to add a space between the resulting completion
and the part ignored.  For example, \`f<TAB>bar' might expand to \`filebar'
without this, and to \`file bar' with it.  Do wish _prefix to add the
space? (y/n) [n] "
            aspace=
            read -q key && aspace=true
	    ;;
      [qQ]) return 1
	    ;;
    esac

  done

  [[ -n $cond && $cond != [[:alnum:]]## ]] && cond=${(qq)cond}
  __ci_set_this_style condition cond
  __ci_set_this_style word word
  __ci_set_this_style old-list olist
  __ci_set_this_style old-menu omenu
  __ci_set_this_style match-original moriginal
  __ci_set_this_style add-space aspace

  return 0
}

__ci_do_minor_completers() {
  # Set the minor completers not handled by __ci_do_completers.
  # Called within __ci_do_completers, so inherits the environment.
  # It's only divided off to keep the menus short.

  local key

  while true; do

    clear
    print "\
              *** compinstall: minor completer menu ***

Current context: $curcontext

The following completers are available.  Those marked \`(*)' are already
set for the context shown above.  Note none of these are required for
normal completion behaviour.

1. ${${completers[_ignored]:+(*)}:-   } _ignored: $ckeys[_ignored]
2. ${${completers[_list]:+(*)}:-   } _list:    $ckeys[_list]
3. ${${completers[_oldlist]:+(*)}:-   } _oldlist: $ckeys[_oldlist]
4. ${${completers[_match]:+(*)}:-   } _match:   $ckeys[_match]
5. ${${completers[_prefix]:+(*)}:-   } _prefix:  $ckeys[_prefix]

o.     Set options for the completers above.
q.     Return without saving.
0.     Done setting minor completers.
"
    read -k key'?--- Hit selection --- '
    print

    [[ $key = 0 ]] && break

    case $key in
      1) __ci_toggle_completer _ignored
	 if [[ -n $completers[_ignored] ]]; then
	   print "\
I am inserting the \`ignored' completer immediately after normal
completion.  You can move it later in the list by hand, if you prefer, so
that ignored completions are only used after, for example, approximations.
To do this, edit $ifile, look for the zstyle ... completers line, and
move \`_ignored' to where you want it.  This will be retained if you use
compinstall again provided you don't go into the completers menu.
"
	   # TODO: we could be more careful about keeping the user's
	   # order, particularly with multiple completers.
           read -k key'?--- Hit any key to continue --- '
	   print
	 fi
	 ;;
      2) __ci_toggle_completer _list
	 ;;
      3) __ci_toggle_completer _oldlist
	 ;;
      4) __ci_toggle_completer _match
	 ;;
      5) __ci_toggle_completer _prefix
	 ;;
      o) __ci_do_minor_completer_options
	 ;;
      q) return 1
	 ;;
    esac

  done

  return 0
}

__ci_do_completer_options() {
  # Set options for the main completers; called from __ci_do_completers.

  local maxe errors prompt glob subst compl cond

  __ci_get_this_style max-errors errors
  __ci_get_this_style prompt prompt
  [[ -n $prompt ]] && prompt=${(Q)prompt}
  __ci_get_this_style glob glob
  [[ -n $glob ]] && glob=${(Q)glob}
  __ci_get_this_style substitute subst
  [[ -n $subst ]] && subst=${(Q)subst}
  __ci_get_this_style completions compl
  [[ -n $compl ]] && compl=${(Q)compl}

  while true; do

    clear
    print "\
              *** compinstall: completer options ***

Current context: $curcontext

The following options are available.  Note that these require the relevant
completers to be present, as set in the menu above this one.

a.     Set options for approximation or correction.
e.     Set options for expansion.
q.     Return without saving.

0.     Done setting options.
"

    read -k key'?--- Hit selection --- '
    print

    # We handle approximation and correction together to avoid having
    # to be too particular about context.
    case $key in
      a) clear
         print "\
Approximation and correction can correct the errors in what you have typed,
up to a maximum number of errors which you can specify.  Each \`error'
is the omission of a character, the addition of a superfluous character,
the substitution of one character by an incorrect one, or transposition of
two different characters.

Current context: $curcontext

To have different values for approximation and correction, you should
change the context appropriately.  For approximation, use
\`:completion:*:approximate:*' and for correction use
\`:completion:*:correct:*'.

Enter maximum number of errors allowed:
"
         maxe=
	 while true; do
	   vared -eh -c -p "number> " maxe
	   [[ $maxe = [[:digit:]]## ]] && break
	   print "Please enter a number"
	   maxe=
	 done
	 while true; do
	   print "\nSelect behaviour of numeric prefix.

1.     Numeric prefix is not used by approximation or completion.
2.     Numeric prefix, if provided, gives max number of errors allowed,
       replacing the number you just typed for that one completion.
3.     Numeric prefix, if provided, prevents approximation or completion
       from taking place at all for that one completion.
"
           read -k -- key'?--- Hit selection --- '
	   print
	   [[ $key = [123] ]] || continue
	   case $key in
             2) maxe="$maxe numeric"
		;;
	     3) maxe="$maxe not-numeric"
		;;
	   esac
	   print "
You can edit a prompt which will appear above lists of corrections.  The
string \`%e' inside the prompt will be replaced with the number of errors
found.  Leave blank for no prompt.  Quotation marks will be added
automatically."
	   vared -eh -c -p "prompt> " prompt
	   break
	 done
	 errors=$maxe
	 ;;
      e) while true; do
           clear
           print "\
The _expand completer can be tuned to perform any of globbing (filename
generation), substitution (anything with a \`\$' or backquote), or
normal completion (which is useful for inserting all possible completions
into the command line).  For each feature, a 1 turns it on, while a 0 turns
it off; if the feature is unset, that expansion will *not* be performed.

You can also give more complicated mathematical expressions, which can use
the parameter NUMERIC to refer to the numeric argument.  For example, the
expression \`NUMERIC == 2' means that the expansion takes effect if you
type ESC-2 (Emacs mode) or 2 (Vi command mode) before the expansion.
Quotes will be added automatically as needed.

g.     Set condition to perform globbing: ${glob:-unset}
s.     Set condition to perform substitution: ${subst:-unset}
c.     Set condition to perform completion: ${compl:-unset}
0.     Done setting conditions (will not be saved until you leave options)
"
           read -k key'?--- Enter selection --- '
	   print

	   case $key in
	     g) vared -eh -c -p 'globbing condition> ' glob
		;;
	     s) vared -eh -c -p 'substitution condition> ' subst
		;;
	     c) vared -eh -c -p 'completion condition> ' compl
		;;
	   esac

	   [[ $key = 0 ]] && break

         done
	 ;;
      q) return 1
	 ;;
    esac

    [[ $key = 0 ]] && break
  done

  __ci_set_this_style max-errors errors
  [[ -n $prompt ]] && prompt=${(qq)prompt}
  __ci_set_this_style prompt prompt
  [[ -n $glob && $glob != [[:alnum:]]## ]] && glob=${(qq)glob}
  __ci_set_this_style glob glob
  [[ -n $subst && $subst != [[:alnum:]]## ]] && subst=${(qq)subst}
  __ci_set_this_style substitute subst
  [[ -n $compl && $compl != [[:alnum:]]## ]] && compl=${(qq)compl}
  __ci_set_this_style completions compl

  key=
  return 0
}

__ci_do_completers() {
  # Set the completers for the current context.
  # This is mostly done via a series of toggles.

  typeset -A completers ckeys
  local c clist newc
  __ci_get_this_style completer newc
  for c in ${=newc}; do
    completers[$c]=1
  done
  if (( ${#completers} == 0 )); then
    completers[_complete]=1
    completers[_ignored]=1
  fi
  clist=(_list _oldlist _menu _expand _complete _ignored
         _match _correct _approximate _prefix)

  # TODO: these are a bit brief, so could provide some more detailed help.
  ckeys=(_complete 'Basic completion.'
         _approximate
'Approximate completion:  completion with correction of existing word.'
         _correct
'Correction:  correct existing word, no completion.'
         _expand
'Expansion: use globbing and parameter substitution, if possible.'

	 _ignored
'Use patterns that were previously ignored if no matches so far.'
         _list
'Only list matches until the second time you hit TAB.'
         _oldlist
'Keep matches generated by special completion functions.'
        _match
'If completion fails, retry with pattern matching.'
         _prefix
'If completion fails, retry ignoring the part after the cursor.'
         )

  # TODO: You'll need to handle the bindkey to make _expand work.
  # TODO: _prefix completer should make sure completeinword is set.

  while true; do

    clear
    print "\
              *** compinstall: completer menu ***

Current context: $curcontext

The following completers are available.  Those marked \`(*)' are already
set for the context shown above.  If none are selected, the completers will
not be set for this context at all.

1. ${${completers[_complete]:+(*)}:-   } $ckeys[_complete]
2. ${${completers[_approximate]:+(*)}:-   } $ckeys[_approximate]
3. ${${completers[_correct]:+(*)}:-   } $ckeys[_correct]
4. ${${completers[_expand]:+(*)}:-   } $ckeys[_expand]

o.     Set options for the completers above.
m.     Set completers that modify the behaviour of the four main ones above.
q.     Return without saving.
0.     Done setting completers.
"
    read -k key'?--- Hit selection --- '
    print

    case $key in
      1) __ci_toggle_completer _complete
	 ;;
      2) __ci_toggle_completer _approximate
	 ;;
      3) __ci_toggle_completer _correct
	 ;;
      4) __ci_toggle_completer _expand
	 ;;
      [mM]) __ci_do_minor_completers || return
            continue
	    ;;
      [oO]) __ci_do_completer_options || return
            continue
	    ;;
      q) return 1
	 ;;
    esac

    [[ $key = 0 ]] && break
  done

  newc=
  for c in $clist; do
    [[ -n $completers[$c] ]] && newc="${newc:+$newc }$c"
  done
  [[ -z $newc ]] && newc="''"
  __ci_set_this_style completer newc
}

__ci_toggle_matcher() {
  # Toggle on/off the matcher in array $1 for element $2
  if [[ ${${(P)1}[$2]} = ' ' ]]; then
    # toggle on
    eval "${1}[$2]=$2"
    if [[ $1 = n* ]]; then
      # no matcher turned on, turn off the others
      c_list[$2]=' '
      C_list[$2]=' '
      p_list[$2]=' '
      s_list[$2]=' '
    else
      # something else turned on, turn off no matcher
      n_list[$2]=' '
    fi
    return 0
  else
    # toggle off
    eval "${1}[$2]=' '"
    if [[ $c_list[$2] == ' ' && $C_list[$2] == ' ' && \
	  $p_list[$2] == ' ' && $s_list[$2] == ' ' ]]; then
      a_or_r[$2]=' '
    fi
    return 1
  fi
}

__ci_do_matchers() {
  # Set matchers via the matcher-list style.
  # We just offer a pre-programmed set of possible matchers, but these
  # cover the most common usages for matchers in a general context.
  # More specific use of matchers is usually covered by completion functions.

  local mlist m_ci m_pw m_sub c_list C_list p_list s_list pw_seps key key2 elt
  local pw_dstar a_or_r i
  integer eltcnt lastnz

  __ci_get_this_style matcher-list mlist
  # $mlist is the once and future list of matchers.  We don't quote it
  # until the end; the eval effectively does de-quoting.
  eval "mlist=($mlist)"
  # ?_list say whether the four possible matchers are set for passes 1,
  # 2, 3, 4, in an easy-to-read manner, i.e. the Nth part of the string
  # is one of N (on) or space (off).
  a_or_r="    "                 # replace by default
  n_list="    "			# null completion, i.e. standard
  c_list="    "			# case match one way
  C_list="    "			# case match both ways
  p_list="    "			# partial word completion
  s_list="    "			# substring completion
  # $pw_seps gives the separators used for partial-word completion
  # by element of the matcher list; these can be edited separately.
  pw_seps=('._-' '._-' '._-' '._-')
  pw_dstar=('' '' '' '')

  # See what's in the matcher initially.  If these have been edited,
  # we're in trouble, but that's pretty much true of everything.
  for (( eltcnt = 1; eltcnt <= $#mlist; eltcnt++ )); do
    [[ $mlist[eltcnt] == "+"* ]] && a_or_r[$eltcnt]='+'
    [[ -z $mlist[$eltcnt] ]] && n_list[$eltcnt]=$eltcnt
    # Accept the old form of lower/upper correspondence, but we'll
    # output the new one instead.
    [[ $mlist[$eltcnt] = *"m:{a-z}={A-Z}"* ]] && c_list[$eltcnt]=$eltcnt
    [[ $mlist[$eltcnt] = *"m:{[:lower:]}={[:upper:]}"* ]] &&
      c_list[$eltcnt]=$eltcnt
    [[ $mlist[$eltcnt] = *"m:{a-zA-Z}={A-Za-z}"* ]] && C_list[$eltcnt]=$eltcnt
    [[ $mlist[$eltcnt] = *"m:{[:lower:][:upper:]}={[:upper:][:lower:]}"* ]] &&
      C_list[$eltcnt]=$eltcnt
    # For partial word stuff, we use backreferences to find out what
    # the set of separators was.
    if [[ $mlist[$eltcnt] = (#b)*"r:|["([^\]]#)"]=*"#" r:|=*"* ]]; then
      p_list[$eltcnt]=$eltcnt
      pw_seps[$eltcnt]=${match[1]}
      [[ $mlist[$eltcnt] = *"=**"* ]] && pw_dstar[$eltcnt]='*'
    fi
    # Just look for the left matcher for substring, since the right matcher
    # might have been handled as part of a partial-word spec.
    [[ $mlist[$eltcnt] = *"l:|=*"* ]] && s_list[$eltcnt]=$eltcnt
  done

  while true; do
    clear
    print "\
              *** compinstall: matcher menu ***

\`Matchers' compare the completion code with the possible matches in some
special way.  Numbers in parentheses show matchers to be tried and the order.
The same number can be assigned to different matchers, meaning apply at the
same time.  Omit a sequence number to try normal matching at that point.
A \`+' in the first line indicates the element is added to preceding matchers
instead of replacing them; toggle this with \`t'.  You don't need to set
all four, or indeed any matchers --- then the style will not be set.

   ($a_or_r)\
   \`+' indicates add to previous matchers, else replace
n. ($n_list)\
 No matchers; you may want to try this as the first choice.
c. ($c_list)\
 Case-insensitive completion (lowercase matches uppercase)
C. ($C_list)\
 Case-insensitive completion (lower/uppercase match each other)
p. ($p_list)\
 Partial-word completion:  expand 'f.b' to 'foo.bar', etc., in one go.
          You can choose the separators (here \`.') used each time.
s. ($s_list)\
 Substring completion:  complete on substrings, not just initial
          strings.  Warning: it is recommended this not be used for element 1.

t.        Toggle replacing previous matchers (\` ' at top) or add (\`+')
q.        Return without saving.
0.        Done setting matchers.
"

    read -k key'?--- Hit selection --- '
    print

    if [[ $key = [nNcCpPsS] ]]; then
      while true; do
	read -k key2'?Set/unset for element number (1234)? '
	print
	[[ $key2 = [1234] ]] && break
	print "Only 1, 2, 3 and 4 are handled."
      done
    fi

    case $key in
      [nN]) __ci_toggle_matcher n_list $key2
         if [[ $n_list[$key2] != ' ' ]]; then
	 fi
         ;;
      c) __ci_toggle_matcher c_list $key2
	 ;;
      C) __ci_toggle_matcher C_list $key2
	 ;;
      [pP]) if __ci_toggle_matcher p_list $key2; then
	      print "\
Edit the set of characters which terminate partial words.  Typically
these are punctuation characters, such as \`.', \`_' and \`-'.
The expression will automatically be quoted.
"
              vared -eh -p 'characters> ' -c 'pw_seps['$key2']'
	      # Paranoia: we don't know if there's a ']' in that string,
	      # which will wreck the spec unless it's at the start.  Other
	      # quotes are OK, since they are picked up at the ${(qq)...}
	      # step.
	      if [[ $pw_seps[$key2] = *']'* ]]; then
		pw_seps[$key2]="]${pw_seps[$key2]//\\\]}"
	      fi
	      print -n "
You can allow the partial-word terminators to be matched in the pattern,
too:  then  for example \`c.u' would expand to \`comp.source.unix', whereas
usually you would need to type an extra intervening dot.  Do you wish the
terminators to be matched in this way? (y/n) [n] "
              pw_dstar[$key2]=
	      read -q key && pw_dstar[$key2]='*'
	    fi
	    ;;
      [tT])
	    read -k key2'?Toggle augment/replace for elements number (1234)? '
	    if [[ $key2 == [1234] ]]; then
	      if [[ $a_or_r[$key2] == ' ' ]]; then
	        a_or_r[$key2]='+'
	      else
	        a_or_r[$key2]=' '
	      fi
	    else
	      print "Only 1, 2, 3 and 4 are handled."
	    fi
	    ;;
      [sS]) __ci_toggle_matcher s_list $key2
	    ;;
      [qQ]) return 1
	 ;;
    esac

    [[ $key = 0 ]] && break
  done

  # Keep track of the last element which was non-empty; all the rest
  # are junked.
  lastnz=0

  # Now we just reverse the first for-loop, looking for set matchers
  # and reconstructing the elements of the matcher array.
  for (( eltcnt = 1; eltcnt <= 4; eltcnt++ )); do
    elt=
    [[ $c_list[$eltcnt] != ' ' ]] &&
      elt="${elt:+$elt }m:{[:lower:]}={[:upper:]}"
    [[ $C_list[$eltcnt] != ' ' ]] &&
      elt="${elt:+$elt }m:{[:lower:][:upper:]}={[:upper:][:lower:]}"
    [[ $p_list[$eltcnt] != ' ' ]] &&
      elt="${elt:+$elt }r:|[${pw_seps[$eltcnt]}]=*${pw_dstar[$eltcnt]}\
 r:|=*${pw_dstar[$eltcnt]}"
    if [[ $s_list[$eltcnt] != ' ' ]]; then
      if [[ $elt = *"r:|=*"* ]]; then
	elt="${elt:+$elt }l:|=*"
      else
	elt="${elt:+$elt }l:|=* r:|=*"
      fi
    fi
    [[ $a_or_r[$eltcnt] != ' ' ]] && elt="+$elt"
    [[ -n $elt || $n_list[$eltcnt] != ' ' ]] && lastnz=$eltcnt
    mlist[$eltcnt]=$elt
  done

  if (( ! $lastnz )); then
    # No matchers set, so just make the style empty: __ci_set_this_style
    # will omit it completely.
    mlist=
  else
    # Quote the entire list: this correctly quotes element by element,
    # praise be to Sven.
    mlist=(${(qq)mlist[1,$lastnz]})
    # Make it a scalar just for safety's sake.
    mlist="$mlist"
  fi
  __ci_set_this_style matcher-list mlist

  return 0
}

__ci_do_list_format() {
  local key format groupn verbose listp autod haslistp
  __ci_get_this_style format format
  [[ -n $format ]] && format=${(Q)format}
  __ci_get_this_style group-name groupn
  __ci_get_this_style verbose verbose
  __ci_get_this_style list-prompt listp
  [[ -n $listp ]] && haslistp=1
  listp=${(Q)listp}
  __ci_get_this_style auto-description autod
  [[ -n $autod ]] && autod=${(Q)autod}

  while true; do
    clear
    print "\
       *** compinstall: order and descriptions in completion lists ***
Type the appropriate number for more information on how this would affect
listings.

1.  Print a message above completion lists describing what is being
    completed.

2.  Make different types of completion appear in separate lists.

3.  Make completion verbose, using option descriptions etc. (on by default).

4.  Make single-valued options display the value's description as
    part of the option's description.

q.  Return without saving.
0.  Done setting options for formatting of completion lists.
"

    read -k key'?--- Hit selection --- '
    print

    [[ $key = 0 ]] && break

    case $key in
      1) print "\
You can set a string which is displayed on a line above the list of matches
for completions.  A \`%d' in this string will be replaced by a brief
description of the type of completion.  For example, if you set the
string to \`Completing %d', and type ^D to show a list of files, the line
\`Completing files' will appear above that list.  Enter an empty line to
turn this feature off.  If you enter something which doesn't include \`%d',
then \`%d' will be appended.  Quotation will be added automatically.
"
         vared -eh -p 'description> ' -c format
	 if [[ -n $format && $format != *%d* ]]; then
	   [[ $format = *[[:blank:]] ]] || format="$format "
	   format="$format%d"
	 fi
	 ;;
      2) print "\
Normally, all possible completions are listed together in a single list, and
if you have set a description with 1) above, the descriptions are listed
together above that.  However, you can specify that different types of
completion appear in separate lists; any description appears above its
own list.  For example, external commands and shell functions would appear
in separate lists when you are completing a command name.  Do you
want to turn this on?
"
         while true; do
           read -k key'?[y]es, [n]o, [k]eep old setting? '
	   print
	   [[ $key = [yYnNkK] ]] && break
	 done
	 case $key in
	   [yY]) groupn="''"
		 ;;
	   [nN]) groupn=
		 ;;
	 esac
	 ;;
      3) print "By default, completion uses a \`verbose' setting.  This
affects different completions in different ways.  For example,  many
well-known commands have short, uninformative option names; in some cases,
completion will indicate what the options do when offering to complete them.
If you prefer shorter listings you can turn this off.  What setting to
you want?
"
          while true; do
            read -k key'?[v]erbose, [n]ot verbose, [k]eep old setting? '
            print
            [[ $key = [vVnNkK] ]] && break
          done
          case $key in
	    # might as well be explicit, particularly since it's
	    # the only way to override an existing `false' value.
	    [vV]) verbose=true
		  ;;
	    [nN]) verbose=false
		  ;;
          esac
	 ;;
      4) print "\
Many commands have options which take a single argument.  In some cases,
completion is not set up to describe the option even though it has a
description for the argument.  You can enter a string containing \`%d',
which will be replaced by the description for the option.  For
example, if you enter the string \`specify: %d', and an option -ifile
exists which has an argument whose description is \`input file', then the
description \`specify: input file' will appear when the option itself
is listed.  As this long explanation suggests, this is only occasionally
useful.  Enter an empty line to turn this feature off.  If you enter
something which doesn't include \`%d', then \`%d' will be appended.
Quotation will be added automatically.
"
         vared -eh -p 'auto-description> ' -c autod
         if [[ -n $autod && $autod != *%d* ]]; then
	   [[ $autod = *[[:blank:]] ]] || autod="$autod "
	   autod="$autod%d"
         fi
	 ;;
      q) return 1
	 ;;
    esac
  done

  [[ -n $format ]] && format=${(qq)format}
  __ci_set_this_style format format
  __ci_set_this_style group-name groupn
  __ci_set_this_style verbose verbose
  [[ -n $autod ]] && autod=${(qq)autod}
  __ci_set_this_style auto-description autod
}

__ci_do_insertion() {
  local key insertu original # sort

  __ci_get_this_style insert-unambiguous insertu
  __ci_get_this_style original original

  while true; do
    clear
    print "\
          *** compinstall: options for inserting completions ***

1.   In completers that change what you have already typed, insert any
     unambiguous prefix rather than go straight to menu completion.

2.   In completers which correct what you have typed, keep what you
     originally typed as one of the list of possible completions.

q.   Return with saving.
0.   Done setting options for insertion.
"
    read -k key'?-- Hit selection --- '
    print

    [[ $key = 0 ]] && break

    case $key in
      1) print "\
The completers which do pattern matching and correction often alter the
string which is already on the line, in the first case because it was a
pattern and in the second case because what you typed was wrong.
Since the possible completions can bear little or no resemblance to one
another in those cases, so that typing extra characters to resolve the
completion doesn't make much sense, menu completion is usually turned on
straight away to allow you to pick the completion you want.  This style
tells completion that if there is a common, unambiguous prefix in this
case, you would prefer that to be inserted rather than going straight
to menu completion.  Do you want this?
"
         while true; do
           read -k key'?[y]es, [n]o, [k]eep old setting? '
	   print
	   [[ $key = [yYnNkK] ]] && break
	 done
	 case $key in
	   [yY]) insertu=true
	         ;;
	   [nN]) insertu=false
		 ;;
	 esac
	 ;;
      2) print "\
For completers which correct what you have typed, you sometimes want
to keep the original string instead, so if the correction was ambiguous
the original string is always listed as a possible completion.  However,
if there was just one completion it is usually accepted.  You can
force completion to offer the original string as a possibility even in
this case.  Do you want this?
"
         while true; do
	   read -k key'?[y]es, [n]o, [k]eep old setting? '
	   print
	   [[ $key = [yYnNkK] ]] && break
	 done
	 case $key in
	   [yY]) original=true
	         ;;
           [nN]) original=false
	         ;;
	 esac
	 ;;
      [qQ]) return 1
	      ;;
    esac

  done

  __ci_set_this_style insert-unambiguous insertu
  __ci_set_this_style original original
  # __ci_set_this_style sort sort

  return 0;
}


__ci_do_selection() {
  local key listc menu select amenu elt listp selectp haslistp hasselectp
  integer num

  __ci_get_this_style list-colors listc
  __ci_get_this_style menu menu
  __ci_get_this_style list-prompt listp
  [[ -n $listp ]] && haslistp=1
  listp=${(Q)listp}
  __ci_get_this_style select-prompt selectp
  [[ -n $selectp ]] && hasselectp=1
  selectp=${(Q)selectp}

  while true; do
    clear
    print "\
     *** compinstall: options for colouring and selecting in lists ***

1.   Use coloured lists for listing completions.

2.   Use cursor keys to select completions from completion lists.

3.   Allow scrolling of long selection lists and set the prompt.

q.   Return without saving.
0.   Done setting options for insertion.
"
    read -k key'?--- Hit selection --- '
    print

    [[ $key = 0 ]] && break

    case $key in
      1) print "\
Zsh can produce coloured completion listings where different file types
etc. appear in different colours.  If you want to tailor that to your
own needs, you will have to edit ~/.zshrc.  Here you have the choice of:

1.  Using the default colours.
2.  Using the colours already set up for GNU ls via the \$LS_COLORS
    environment variable.  Note this must be set before the completion
    configuration code is executed.
3.  Turn colouring off.
0.  Leave the setting the way it is.  Choose this if you have a custom
    setting and you don't want to lose it.
"
         while true; do
	   read -k key'?Enter 1, 2, 3, 0: '
	   print
	   [[ $key = [1230] ]] && break
	 done
	 case $key in
	   1) listc="''"
	      ;;
	   2) listc='${(s.:.)LS_COLORS}'
	      ;;
	   3) listc=
	      ;;
	 esac
	 ;;
      2) print "\
If you use zsh's menu completion and the feature that all short completion
lists appear below the line on which you are editing, you can enable
\`menu selection', which lets you pick a completion with the cursor keys:
the choice is highlighted, and hitting return accepts it.  Note that
this only happens when you are already using menu completion.  This
feature can be set so that it is only enabled when there are a certain
number of completions.  Please enter:

- 0 or 1, to turn this feature on unconditionally
- a higher number to turn this feature on when there are that many
  completions
- an \`l' for \`long' to turn it on for listings which don't fit on the
  screen.
- an \`ll' for \`long list' to turn it on for completions which don't fit
  on the screen, even for commands which only do listing of completions.
  This may be combined with a number which will be used in ordinary selection.
- a negative number to turn this feature off
- an empty line to leave the setting the way it is.
"
	 # Better to parse and display the current setting.
         while true; do
           vared -eh -p 'value> ' select
	   [[ -z $select || $select = ((-|)<->|l|<->#ll<->#) ]] && break;
	   print "Type a number, l, ll, ll<num>, or an empty line." >&2
	 done
	 amenu=(${=menu})
	 elt=${amenu[(i)*select*]}
	 [[ $elt -eq 0 || $elt -gt $#amenu ]] && elt=
	 case $select in
	   <->) if [[ -n $elt ]]; then
		  amenu[$elt]="select=$select"
		else
		  amenu=($amenu "select=$select")
	        fi
		menu="$amenu"
		;;
	   *ll*) num=${(RS)select##ll}
	         select="select=long-list"
		 [[ -n $num ]] && select="$select select=$num"
		 if [[ -n $elt ]]; then
		   amenu[$elt]=$select
		 else
		   amenu=($amenu $select)
		 fi
		 menu="$amenu"
		 ;;
	   l#) if [[ -n $elt ]]; then
                 amenu[$elt]="select=long"
               else
                 amenu=($amenu "select=long")
               fi
	       menu="$amenu"
               ;;
	   -<->) if [[ -n $elt ]]; then
		    # i never liked the way indexing was done anyway
		    if [[ $elt -eq 1 ]]; then
		      amenu=($amenu[$elt+1,-1])
		    else
		      amenu=($amenu[1,$elt-1] $amenu[$elt+1,-1])
		    fi
		 fi
		 menu="$amenu"
		 ;;
	 esac
	 if [[ $menu = *select* ]]; then
	   print "\
You can also set a prompt to use for menu selection when it would scroll
off the screen.  Unless this is set, you won't see a prompt, but the feature
is still enabled.

Edit a prompt below.  It can contain \`%l' to show the number of matches
as \`current_number/total_number', \`%p' to show the fraction of
the way down the list, or font-control sequences such as %B, %U, %S and
the corresponding %b, %u, %s; quotes will be added automatically.  Delete
the whole line to turn it off.  Hit return to keep the current value.
"
	   [[ -z $hasselectp ]] &&
	     selectp='%SScrolling active: current selection at %p%s'
	   vared -eh -p 'prompt> ' -c selectp
	   [[ -z $selectp ]] && hasselectp=
	 fi
         ;;
      3) print "\
You can make completion lists scroll when they don't fit on the screen.
Note this is different from scrolling in menu selection --- a more basic
pager is used which should work even with fairly stupid terminals.

To enable this, edit a prompt to show when scrolling is active; an empty 
string turns this feature off.  It can contain \`%l' to show the number of
matches as \`current_number/total_number', \`%p' to show the fraction of
the way down the list, or font-control sequences such as %B, %U, %S and the
corresponding %b, %u, %s; quotes will be added automatically.  Delete the
whole line to turn this behaviour off, in which case the display of
completions which don't fit on the screen is controlled by the LISTMAX
parameter (currently ${LISTMAX:-unset}), which specifies the maximum number
to show without asking.  Hit return to keep the current value.
"
         [[ -z $haslistp ]] &&
	   listp='%SAt %p: Hit TAB for more, or the character to insert%s'
	 vared -eh -p 'prompt> ' -c listp
	 [[ -z $listp ]] && haslistp=
	 ;;
      q) return 1
         ;;
    esac
  done

  __ci_set_this_style list-colors listc
  __ci_set_this_style menu menu
  [[ -n $haslistp ]] && listp=${(qq)listp}
  __ci_set_this_style list-prompt listp
  [[ -n $hasselectp ]] && selectp=${(qq)selectp}
  __ci_set_this_style select-prompt selectp

  return 0
}


__ci_do_display() {
  local key usec

  __ci_get_this_style use-compctl usec

  while true; do
    clear
    print "\
         *** compinstall: display and insertion options ***

1.  Change appearance of completion lists:  allows descriptions of
    completions to appear and sorting of different types of completions.

2.  Change how completions are inserted: includes options for sorting,
    and keeping the original or an unambiguous prefix with correction etc.

3.  Configure coloured/highlighted completion lists, selection of items
    and scrolling.

4.  Change whether old-style \`compctl' completions will be used.

q.  Return without saving.
0.  Done setting display and insertion options.
"

    read -k key'?--- Hit selection --- '
    print

    [[ $key = 0 ]] && break

    case $key in
      1) __ci_do_list_format
	 ;;
      2) __ci_do_insertion
	 ;;
      3)  __ci_do_selection
	 ;;
      4) print "\
Completions defined by the new completion system (the one you are
configuring) always take precedence over the old sort defined with compctl.
You can choose whether or not you want to search for a compctl-defined
completion if no new completion was found for a command.  The default
behaviour is only to check for compctl-defined completions if the required
library, zsh/compctl, is already loaded.  (If not, this implies that
compctl has not been called.)  Do you want to test for compctl-defined
completions?
"
         while true; do
	   read -k key'?[y]es, [n]o, if [l]oaded, [k]eep old setting? '
	   print
	   [[ $key = [yYnNlLkK] ]] && break
	 done
	 case $key in
	   [yY]) usec=true
	         ;;
	   [nN]) usec=false
	         ;;
	   [lL]) usec=
	         ;;
	 esac
	 ;;
      q) return 1
	 ;;
    esac

  done

  __ci_set_this_style use-compctl usec

  return 0
}


#       file-sort, special-dirs, ignore-parents,
#       squeeze-slashes,
__ci_do_file_styles() {
  local key files cursor expand speciald ignorep squeezes select
  local prefon suffon lssuffixes preserve

  __ci_get_this_style file-sort files
  __ci_get_this_style ignore-parents ignorep
  __ci_get_this_style special-dirs speciald
  __ci_get_this_style squeeze-slashes squeezes
  __ci_get_this_style expand expand
  __ci_get_this_style list-suffixes lssuffixes
  __ci_get_this_style preserve-prefix preserve
  [[ -n $preserve ]] && preserve=${(Q)preserve}

  while true; do
    clear
    print "\
      *** compinstall: options for filename completion ***

1.  Choose how to sort the displayed list of filename matches.

2.  In expressions with .., don't include directories already implied.

3.  Allow completion of . and .. for the bone idle.

4.  When expanding paths, \`foo//bar' is treated as \`foo/bar'.

5.  Configure how multiple paths are expanded and displayed, 
    e.g. /f/b -> /foo/bar

6.  Keep certain prefixes unchanged, such as \`//resource/'.

q.  Return without saving.
0.  Done setting options for filename completion.
"
    read -k key'?--- Hit selection --- '
    print

    [[ $key = 0 ]] && break

    case $key in
      (1) print "\
Filenames listed as possible completions are usually displayed in
alphabetical order.  You can alternatively choose:
  s  File size
  l  Number of (hard) links
  m  Modification time
  a  Access time
  i  Inode change time
  n  File name
  k  Keep the current setting
You can also specify the reverse of any of the above orders (except \`k'):  to
do this, type the appropriate letter in upper case.
"
         while true; do
           read -k key'?--- Hit selection --- '
	   print
	   [[ $key = [sSlLmMaAiInNkK] ]] && break
	 done
	 case $key in
	   ([sS]) files=size;;
	   ([lL]) files=links;;
	   ([mM]) files=modification;;
	   ([aA]) files=access;;
	   ([iI]) files=inode;;
	   ([nN]) files=name;;
	 esac
	 if [[ $key = [SLAMIN] ]]; then
	   # slam it into reverse
	   files="$files reverse"
	 fi
	 ;;
      (2) print "\
When you type an expression containing \`..', you may usually not want to
be offered certain directories for completion.
  p   Don't offer parents:  in \`foo/bar/../', don't make \`bar' a completion.
  c   Don't offer the current directory, e.g. after \`../'.
  o   Only perform the two tests if there is a real \`..' in the word so far.
  d   Only perform the two tests when completing directory names.
  0   None of the above; use normal completion.
  k   Keep the current settings.
You may specify any combination of p, c, o, d including at least one of p
and c, or you may specify either 0 or k.  Note that the _ignored completer
functions in the normal way, i.e. you would be able to complete the
directories in question if nothing else matched.
"
          while true; do
	    vared -eh -p 'selection> ' select
	    [[ ( $select = [pPcCoOdD]# && $select = *[pPcC]* )
		    || $select = [0kK] ]] && break
	    print "Type any combination of p, c, o, d, or type 0 or k"
	  done
	  case $select in
	    (0) ignorep=
		;;
	    ([pPcCoOdD]#)
		ignorep=()
		[[ $select = *[pP]* ]] && ignorep=($ignorep parent)
		[[ $select = *[cC]* ]] && ignorep=($ignorep pwd)
		[[ $select = *[oO]* ]] && ignorep=($ignorep ..)
		[[ $select = *[dD]* ]] && ignorep=($ignorep directory)
		;;
	  esac
	  ;;
      (3) print "\
Filename completion does not usually offer the directory names \`.' and
\`..' as choices.  However, some immensely lazy people can't even be
bothered to type these.  Do you wish to be offered \`.' and \`..' as
choices ([y]es, [n]o, [k]eep current setting)?
"
          while true; do
            read -k key'?--- Hit selection --- '
	    [[ $key = [yYnNkK] ]] && break
	    print "Type y, n or k."
	  done
	  case $key in
	    ([yY]) speciald=true;;
	    ([nN]) speciald=;;
	  esac
	  ;;
      (4) print "\
Filename completion can complete sets of path segments at once, for example
\`/u/X/l/X' to \`/usr/X11R6/lib/X11'.  Normally this means that multiple
slashes in filenames are treated as matching multiple directories.  For
example, \`foo//bar' could expand to \`foo/datthe/bar'.  You can, however,
stick to the usual UNIX convention that multiple slashes are treated as
a single slash.  Do you wish to treat multiple slashes the same as just
one ([y]es, [n]o, [k]eep current setting)?
"
          while true; do
	    read -k key'?--- Hit selection --- '
	    [[ $key = [yYnNkK] ]] && break
	    print "Type one of y, n or k."
	  done
	  case $key in
	    ([yY]) squeezes=true;;
	    ([nN]) squeezes=;;
	  esac
          ;;
      (5) if [[ $expand = *prefix* ]]; then
             prefon=prefix
	  else
	     prefon=
	  fi
	  if [[ $expand = *suffix* ]]; then
	     suffon=suffix
	  else
	     suffon=
	  fi
          print "
When expanding /f/b, the shell will attempt to match /f*/b* (e.g. /foo/bar), 
and so on to any depth.  If the first part of the expansion fails, by default
the shell will not expand the remainder.  However, you can force it always
to expand the first part.  Currently this feature is ${${prefon:+on}:-off}.
Do you want it on ([y]es, [n]o, [k]eep current setting)?
"
	  while true; do
	    read -k key'?--- Hit selection --- '
	    [[ $key = [yYnNkK] ]] && break
	    print "Type one of y, n or k."
	  done
	  case $key in
	    ([yY]) prefon=prefix;;
	    ([nN]) prefon=prefix;;
	  esac
	  print "
Further, if /f*/b* is ambiguous, the shell will usually only expand
as far as the part that is unambiguous; for example, if /foo/bar and
/food/basket exist, it will wait for you to choose either /foo or /food,
and not attempt to expand the rest of the match.  However, you can force
it to add all possible completions for you to resolve conflicts in the
normal way.  Currently this feature is ${${suffon:+on}:-off}.
Do you want it on ([y]es, [n]o, [k]eep current setting)?
"
	  while true; do
	    read -k key'?--- Hit selection --- '
	    [[ $key = [yYnNkK] ]] && break
	    print "Type one of y, n or k."
	  done
	  case $key in
	    ([yY]) suffon=suffix;;
	    ([nN]) suffon=suffix;;
	  esac
	  expand=${prefon:+$prefon${suffon:+ }}${suffon}

	  if [[ $lssuffixes = (1|[tT]|[yY]|[oO])* ]]; then
	     lssuffixes=true
	  else
	     lssuffixes=
	  fi
	  print "
When listing expansions of /f/b such as /foo/bar, /foo/bad, /failed/bag,
the shell will usually only show the first part of the path if it is
ambiguous, hence /foo will appear twice.  It is possible to show the
full path in this case.  Currently this feature is ${${lssuffixes:+on}:-off}.
Do you want this behaviour ([y]es, [n]o, [k]eep current setting)?
"
	  while true; do
	    read -k key'?--- Hit selection --- '
	    [[ $key = [yYnNkK] ]] && break
	    print "Type one of y, n or k."
	  done
	  case $key in
	    ([yY]) lssuffixes=true;;
	    ([nN]) lssuffixes=;;
	  esac
	  ;;
      (6) print "\
On some systems, there are special forms for the start of a filename
which should be left alone by the completion system.  For example, Cygwin
uses a double slash to indicate a network resource, hence a prefix of
the form \`//resource/' should be left alone.  This style gives a pattern
to match any such prefixes; alternatives separated by \`|' are therefore
possible.  Edit the pattern as you like.  If this is empty, the shell will not
handle any prefixes specially."
          if [[ -z $preserve ]]; then
	      preserve="//[^/]##/"
	      print "
Accept the default to handle network resources as just described."
	  fi
	  vared -eh -p "pattern> " preserve
	  ;;
      (q) return 1
	 ;;
    esac

  done

  __ci_set_this_style file-sort files
  __ci_set_this_style ignore-parents ignorep
  __ci_set_this_style special-dirs speciald
  __ci_set_this_style squeeze-slashes squeezes
  __ci_set_this_style expand expand
  __ci_set_this_style list-suffixes lssuffixes
  # pattern, always quote
  [[ -n $preserve ]] && preserve=${(qq)preserve}
  __ci_set_this_style preserve-prefix preserve

  return 0
}


# TODO: history completion, jobs, prefix-needed 'n' stuff.
__ci_do_misc() {
  local key

  while true; do
    clear
    print "\
      *** compinstall: options for particular types of completion ***

1.  Options for file completion.

q.  Return without saving.
0.  Done setting options for particular completions.
"
    read -k key'?--- Hit selection --- '
    print

    [[ $key = 0 ]] && break

    case $key in
      1) __ci_do_file_styles
	 ;;
      q) return 1
	 ;;
    esac

  done

  return 0;
}


# TODO: it should probably be possible to set completion options via
#         compinstall, even though they've been around for years.

while true; do
  clear
  print "\
               *** compinstall: main menu ***
Note that hitting \`q' in menus does not abort the set of changes from
lower level menus.  However, quitting at top level will ensure that nothing
at all is actually written out.

1.  Completers:  choose completion behaviour for tasks such as
    approximation, spell-checking, expansion.

2.  Matching control: set behaviour for case-insensitive matching,
    extended (partial-word) matching and substring matching.

3.  Styles for changing the way completions are displayed and inserted.

4.  Styles for particular completions.

c.  Change context (plus more information on contexts).

q.  Return without saving.
0.  Save and exit.
"

  __ci_newline \
    "--- Hit choice --- " || return 1

  # note this is a string test:  we require the `0' to have been typed.
  [[ $key = 0 ]] && break

  case $key in
    1) __ci_do_completers
       ;;
    2) __ci_do_matchers
       ;;
    3) __ci_do_display
       ;;
    4) __ci_do_misc
       ;;
    c) __ci_change_context
       ;;
  esac
done


if (( $#styles )); then
  typeset style stylevals context values
  for style in ${(ko)styles}; do
    stylevals=(${(f)styles[$style]})
    while (( $#stylevals )); do
      output="$output
zstyle ${(qq)stylevals[1]} $style ${stylevals[2]}"
      shift 2 stylevals
    done
  done
fi

if [[ -z $ifile || -d $ifile ]] ||
  ! read -q key"?Save new settings to $ifile ([y]es, [n]o)? "; then
   print "Enter file to save in (~ will be expanded), or return to abort:"
   ifile=
   vared -ch -p 'file> ' ifile
   if [[ $ifile != [/~]* ]]; then
     ifile=$PWD/$ifile
     print "[Not absolute path; updating to $ifile]"
   fi
   ifile=${~ifile}
fi

local tmpout=${TMPPREFIX:-/tmp/zsh}compinstall$$
#
# Assemble the complete set of lines to
# insert.
#
__ci_output >$tmpout

if [[ -n $ifile ]]; then
  if [[ $ifile != *(zshrc|zlogin|zshenv) ]]; then 
    print "\
If you want this file to be run automatically, you should add
  . $ifile
to your .zshrc.  compinstall will remember the name of this file for
future use."
    __ci_newline || return 1
  fi
  #
  # Now use sed to update the file.
  #
  if [[ -f $ifile ]]; then
    cp $ifile ${ifile}\~ &&
    print "Copied old file to ${ifile}~."
  else
    touch $ifile
  fi
  if { { grep "$endline" $ifile >/dev/null 2>&1 &&
         sed -e "/^[ 	]*$endline/r $tmpout
/^[ 	]*$startline/,/^[ 	]*$endline/d" $ifile >${tmpout}2 } || 
        { cp $ifile ${tmpout}2 && cat $tmpout >>${tmpout}2 } } &&
  cp ${tmpout}2 $ifile && rm -f ${tmpout}2; then
    print "\nSuccessfully added compinstall lines to $ifile."
    rm -f $tmpout
  else
    print "\nFailure adding lines to $ifile.  Lines left in \`$tmpout'"
  fi
  rm -f ${tmpout}2
elif read -q key'?Print them to stdout instead ([y]es, [n]o)? '; then
  cat $tmpout
  rm -f $tmpout
fi

if read -q key'?Set new styles for immediate use ([y]es, [n]o)? '; then
  eval $output
  print "The new settings are now in effect.  Note this will not remove old
styles you have deleted until you restart the shell."
fi

__ci_tidyup
return 0

Filemanager

Name Type Size Permission Actions
VCS_INFO_adjust File 246 B 0644
VCS_INFO_bydir_detect File 827 B 0644
VCS_INFO_check_com File 294 B 0644
VCS_INFO_detect_bzr File 326 B 0644
VCS_INFO_detect_cdv File 335 B 0644
VCS_INFO_detect_cvs File 325 B 0644
VCS_INFO_detect_darcs File 333 B 0644
VCS_INFO_detect_fossil File 341 B 0644
VCS_INFO_detect_git File 657 B 0644
VCS_INFO_detect_hg File 681 B 0644
VCS_INFO_detect_mtn File 336 B 0644
VCS_INFO_detect_p4 File 2.3 KB 0644
VCS_INFO_detect_svk File 1.43 KB 0644
VCS_INFO_detect_svn File 348 B 0644
VCS_INFO_detect_tla File 345 B 0644
VCS_INFO_formats File 3.62 KB 0644
VCS_INFO_get_cmd File 233 B 0644
VCS_INFO_get_data_bzr File 3.41 KB 0644
VCS_INFO_get_data_cdv File 305 B 0644
VCS_INFO_get_data_cvs File 512 B 0644
VCS_INFO_get_data_darcs File 311 B 0644
VCS_INFO_get_data_fossil File 654 B 0644
VCS_INFO_get_data_git File 5.59 KB 0644
VCS_INFO_get_data_hg File 8.24 KB 0644
VCS_INFO_get_data_mtn File 410 B 0644
VCS_INFO_get_data_p4 File 1.08 KB 0644
VCS_INFO_get_data_svk File 729 B 0644
VCS_INFO_get_data_svn File 1.7 KB 0644
VCS_INFO_get_data_tla File 479 B 0644
VCS_INFO_hook File 1.64 KB 0644
VCS_INFO_maxexports File 472 B 0644
VCS_INFO_nvcsformats File 423 B 0644
VCS_INFO_quilt File 5.53 KB 0644
VCS_INFO_realpath File 250 B 0644
VCS_INFO_reposub File 295 B 0644
VCS_INFO_set File 805 B 0644
_SuSEconfig File 582 B 0644
_a2ps File 2.74 KB 0644
_a2utils File 487 B 0644
_aap File 2.58 KB 0644
_acpi File 1.24 KB 0644
_acpitool File 2.38 KB 0644
_acroread File 3.42 KB 0644
_adb File 15.02 KB 0644
_alias File 711 B 0644
_aliases File 708 B 0644
_all_labels File 920 B 0644
_all_matches File 970 B 0644
_alternative File 1.9 KB 0644
_analyseplugin File 647 B 0644
_ant File 5.96 KB 0644
_antiword File 1.08 KB 0644
_apachectl File 116 B 0644
_apm File 1.64 KB 0644
_approximate File 3.39 KB 0644
_apt File 20.53 KB 0644
_apt-file File 1.75 KB 0644
_apt-move File 1.77 KB 0644
_apt-show-versions File 750 B 0644
_aptitude File 4.02 KB 0644
_arch_archives File 413 B 0644
_arch_namespace File 3.23 KB 0644
_arg_compile File 7.39 KB 0644
_arguments File 16.75 KB 0644
_arp File 1.14 KB 0644
_arping File 1.32 KB 0644
_arrays File 86 B 0644
_assign File 64 B 0644
_at File 969 B 0644
_attr File 2.24 KB 0644
_auto-apt File 1.06 KB 0644
_autocd File 85 B 0644
_awk File 972 B 0644
_axi-cache File 725 B 0644
_bash_completions File 1.33 KB 0644
_baz File 15.64 KB 0644
_be_name File 407 B 0644
_beadm File 1.46 KB 0644
_bind_addresses File 416 B 0644
_bindkey File 2 KB 0644
_bison File 923 B 0644
_bittorrent File 4.8 KB 0644
_bogofilter File 5.17 KB 0644
_brace_parameter File 4.9 KB 0644
_brctl File 1.72 KB 0644
_bsd_pkg File 5.42 KB 0644
_btrfs File 5 KB 0644
_bts File 7.06 KB 0644
_bug File 4.58 KB 0644
_builtin File 178 B 0644
_bzip2 File 2.17 KB 0644
_bzr File 10.53 KB 0644
_cache_invalid File 707 B 0644
_cal File 547 B 0644
_calendar File 1.37 KB 0644
_call_function File 737 B 0644
_call_program File 211 B 0644
_canonical_paths File 4.1 KB 0644
_ccal File 778 B 0644
_cd File 3.58 KB 0644
_cdbs-edit-patch File 56 B 0644
_cdcd File 2.09 KB 0644
_cdr File 1.17 KB 0644
_cdrdao File 8.06 KB 0644
_cdrecord File 4.75 KB 0644
_chflags File 1.5 KB 0644
_chkconfig File 777 B 0644
_chmod File 2.22 KB 0644
_chown File 2.48 KB 0644
_chrt File 1.63 KB 0644
_clay File 1.72 KB 0644
_combination File 2.44 KB 0644
_comm File 409 B 0644
_command File 238 B 0644
_command_names File 1.25 KB 0644
_compdef File 1.92 KB 0644
_complete File 3.09 KB 0644
_complete_debug File 825 B 0644
_complete_help File 2.4 KB 0644
_complete_help_generic File 412 B 0644
_complete_tag File 1.82 KB 0644
_compress File 1.38 KB 0644
_condition File 1.66 KB 0644
_configure File 444 B 0644
_coreadm File 1.46 KB 0644
_correct File 518 B 0644
_correct_filename File 1.92 KB 0644
_correct_word File 388 B 0644
_cowsay File 535 B 0644
_cp File 2.34 KB 0644
_cpio File 4.55 KB 0644
_cplay File 343 B 0644
_cryptsetup File 3.24 KB 0644
_cssh File 795 B 0644
_csup File 1.1 KB 0644
_ctags_tags File 170 B 0644
_cut File 2.57 KB 0644
_cvs File 28.27 KB 0644
_cvsup File 937 B 0644
_cygcheck File 2 KB 0644
_cygpath File 2.55 KB 0644
_cygrunsrv File 2.71 KB 0644
_cygserver File 1.5 KB 0644
_cygstart File 2.13 KB 0644
_dak File 8.98 KB 0644
_darcs File 1.17 KB 0644
_date File 1.11 KB 0644
_dbus File 3.46 KB 0644
_dchroot File 1.03 KB 0644
_dchroot-dsa File 987 B 0644
_dcop File 2.88 KB 0644
_dd File 812 B 0644
_deb_packages File 3.63 KB 0644
_debchange File 511 B 0644
_debdiff File 906 B 0644
_debfoster File 3.14 KB 0644
_debsign File 623 B 0644
_default File 682 B 0644
_defaults File 1.66 KB 0644
_delimiters File 329 B 0644
_describe File 3.12 KB 0644
_description File 3.03 KB 0644
_devtodo File 4.45 KB 0644
_dhclient File 925 B 0644
_dhcpinfo File 1.17 KB 0644
_dict File 2.09 KB 0644
_dict_words File 1.26 KB 0644
_diff File 90 B 0644
_diff_options File 6.98 KB 0644
_diffstat File 727 B 0644
_dir_list File 680 B 0644
_directories File 117 B 0644
_directory_stack File 1.38 KB 0644
_dirs File 262 B 0644
_disable File 459 B 0644
_dispatch File 2.01 KB 0644
_django File 5.86 KB 0644
_dladm File 26.1 KB 0644
_dlocate File 893 B 0644
_dmidecode File 935 B 0644
_domains File 585 B 0644
_dpatch-edit-patch File 1.25 KB 0644
_dpkg File 7.29 KB 0644
_dpkg-buildpackage File 1.17 KB 0644
_dpkg-cross File 1.12 KB 0644
_dpkg-repack File 378 B 0644
_dpkg_source File 1.29 KB 0644
_dput File 1.26 KB 0644
_dtrace File 2.07 KB 0644
_du File 3.16 KB 0644
_dumpadm File 596 B 0644
_dumper File 377 B 0644
_dupload File 780 B 0644
_dvi File 3.94 KB 0644
_dynamic_directory_name File 378 B 0644
_ecasound File 8.38 KB 0644
_echotc File 93 B 0644
_echoti File 94 B 0644
_elinks File 2.89 KB 0644
_elm File 653 B 0644
_email_addresses File 5.32 KB 0644
_emulate File 217 B 0644
_enable File 338 B 0644
_enscript File 5.24 KB 0644
_env File 429 B 0644
_equal File 33 B 0644
_espeak File 2.03 KB 0644
_ethtool File 6.6 KB 0644
_expand File 6.77 KB 0644
_expand_alias File 1.94 KB 0644
_expand_word File 307 B 0644
_fakeroot File 486 B 0644
_fc File 1.33 KB 0644
_feh File 6.85 KB 0644
_fetch File 1.36 KB 0644
_fetchmail File 554 B 0644
_ffmpeg File 8.16 KB 0644
_figlet File 1.47 KB 0644
_file_descriptors File 844 B 0644
_file_systems File 1.14 KB 0644
_files File 3.92 KB 0644
_find File 3 KB 0644
_finger File 2.11 KB 0644
_fink File 5.25 KB 0644
_first File 1.59 KB 0644
_flasher File 1.62 KB 0644
_flex File 1.42 KB 0644
_floppy File 110 B 0644
_flowadm File 2.5 KB 0644
_fmadm File 2.31 KB 0644
_fortune File 601 B 0644
_freebsd-update File 935 B 0644
_fsh File 519 B 0644
_fstat File 675 B 0644
_functions File 233 B 0644
_fuse_arguments File 1.05 KB 0644
_fuse_values File 1.61 KB 0644
_fuser File 2.06 KB 0644
_fusermount File 650 B 0644
_gcc File 11.81 KB 0644
_gcore File 805 B 0644
_gdb File 1.68 KB 0644
_generic File 328 B 0644
_genisoimage File 1.96 KB 0644
_getclip File 532 B 0644
_getconf File 2.16 KB 0644
_getent File 1.61 KB 0644
_getfacl File 1.34 KB 0644
_getmail File 1.05 KB 0644
_git File 251.4 KB 0644
_git-buildpackage File 2.57 KB 0644
_global File 1.81 KB 0644
_global_tags File 186 B 0644
_globflags File 693 B 0644
_globqual_delims File 466 B 0644
_globquals File 5.75 KB 0644
_gnome-gv File 139 B 0644
_gnu_generic File 178 B 0644
_gnupod File 5.57 KB 0644
_gnutls File 6.1 KB 0644
_go File 256 B 0644
_gpg File 12.99 KB 0644
_gphoto2 File 2.45 KB 0644
_gprof File 1.31 KB 0644
_gqview File 619 B 0644
_gradle File 6.29 KB 0644
_graphicsmagick File 28.2 KB 0644
_grep File 3.98 KB 0644
_grep-excuses File 315 B 0644
_groff File 2.2 KB 0644
_groups File 1009 B 0644
_growisofs File 19.16 KB 0644
_gs File 1.58 KB 0644
_guard File 169 B 0644
_guilt File 1.52 KB 0644
_gv File 1.32 KB 0644
_gzip File 3.45 KB 0644
_hash File 1.1 KB 0644
_have_glob_qual File 910 B 0644
_hdiutil File 22.02 KB 0644
_hg File 29.08 KB 0644
_history File 1.31 KB 0644
_history_complete_word File 3.37 KB 0644
_history_modifiers File 1.91 KB 0644
_hosts File 2.32 KB 0644
_hwinfo File 1.87 KB 0644
_iconv File 1.97 KB 0644
_id File 453 B 0644
_ifconfig File 2.8 KB 0644
_iftop File 665 B 0644
_ignored File 1.61 KB 0644
_imagemagick File 27.45 KB 0644
_in_vared File 813 B 0644
_inetadm File 406 B 0644
_init_d File 2.55 KB 0644
_initctl File 6.18 KB 0644
_invoke-rc.d File 555 B 0644
_ionice File 337 B 0644
_ip File 19.66 KB 0644
_ipadm File 12.31 KB 0644
_ipset File 6.03 KB 0644
_iptables File 10.35 KB 0644
_irssi File 1.38 KB 0644
_ispell File 4.11 KB 0644
_iwconfig File 2.34 KB 0644
_java File 22.92 KB 0644
_java_class File 681 B 0644
_jobs File 1.94 KB 0644
_jobs_bg File 27 B 0644
_jobs_builtin File 360 B 0644
_jobs_fg File 31 B 0644
_joe File 2.22 KB 0644
_join File 933 B 0644
_kfmclient File 3.19 KB 0644
_kill File 475 B 0644
_killall File 365 B 0644
_kld File 867 B 0644
_knock File 304 B 0644
_kvno File 566 B 0644
_last File 472 B 0644
_ld_debug File 1.14 KB 0644
_ldd File 1.3 KB 0644
_less File 5.54 KB 0644
_lha File 1.77 KB 0644
_lighttpd File 413 B 0644
_limit File 166 B 0644
_limits File 105 B 0644
_linda File 1.41 KB 0644
_links File 2.04 KB 0644
_lintian File 4.64 KB 0644
_list File 822 B 0644
_list_files File 1.39 KB 0644
_ln File 2.96 KB 0644
_loadkeys File 595 B 0644
_locales File 349 B 0644
_locate File 4.5 KB 0644
_logical_volumes File 455 B 0644
_look File 444 B 0644
_losetup File 737 B 0644
_lp File 8.08 KB 0644
_ls File 5.94 KB 0644
_lscfg File 658 B 0644
_lsdev File 1.39 KB 0644
_lslv File 348 B 0644
_lsof File 2.32 KB 0644
_lspv File 432 B 0644
_lsusb File 861 B 0644
_lsvg File 505 B 0644
_lynx File 10.9 KB 0644
_lzop File 3.75 KB 0644
_mac_applications File 139 B 0644
_mac_files_for_application File 1.95 KB 0644
_madison File 688 B 0644
_mail File 432 B 0644
_mailboxes File 5.88 KB 0644
_main_complete File 9.59 KB 0644
_make File 4.92 KB 0644
_make-kpkg File 2.58 KB 0644
_man File 3.25 KB 0644
_match File 2.37 KB 0644
_math File 327 B 0644
_matlab File 1.13 KB 0644
_md5sum File 457 B 0644
_mdadm File 8.02 KB 0644
_members File 390 B 0644
_mencal File 1.06 KB 0644
_menu File 558 B 0644
_mere File 57 B 0644
_mergechanges File 106 B 0644
_message File 788 B 0644
_metaflac File 1.42 KB 0644
_mh File 3.51 KB 0644
_mii-tool File 748 B 0644
_mime_types File 1.13 KB 0644
_mkdir File 1.86 KB 0644
_mkshortcut File 1.24 KB 0644
_mkzsh File 371 B 0644
_module File 5.37 KB 0644
_module-assistant File 2.05 KB 0644
_modutils File 4.87 KB 0644
_mondo File 1.95 KB 0644
_monotone File 2.45 KB 0644
_mosh File 372 B 0644
_most_recent_file File 871 B 0644
_mount File 40.42 KB 0644
_mozilla File 4.67 KB 0644
_mpc File 6.46 KB 0644
_mplayer File 8.13 KB 0644
_mt File 3.14 KB 0644
_mtools File 3.99 KB 0644
_mtr File 725 B 0644
_multi_parts File 8.16 KB 0644
_mutt File 1.28 KB 0644
_my_accounts File 45 B 0644
_mysql_utils File 9.75 KB 0644
_mysqldiff File 1.1 KB 0644
_nautilus File 538 B 0644
_ncftp File 280 B 0644
_nedit File 2.8 KB 0644
_net_interfaces File 1.03 KB 0644
_netcat File 1.29 KB 0644
_netscape File 2.87 KB 0644
_netstat File 2.22 KB 0644
_newsgroups File 210 B 0644
_next_label File 600 B 0644
_next_tags File 3.38 KB 0644
_nice File 246 B 0644
_nkf File 2.1 KB 0644
_nm File 731 B 0644
_nmap File 3.38 KB 0644
_nmcli File 8.76 KB 0644
_normal File 1011 B 0644
_nothing File 90 B 0644
_notmuch File 1.63 KB 0644
_npm File 529 B 0644
_nslookup File 5.54 KB 0644
_object_classes File 146 B 0644
_okular File 334 B 0644
_oldlist File 1.87 KB 0644
_open File 1.08 KB 0644
_options File 182 B 0644
_options_set File 299 B 0644
_options_unset File 309 B 0644
_osc File 4.05 KB 0644
_other_accounts File 64 B 0644
_pack File 361 B 0644
_parameter File 37 B 0644
_parameters File 914 B 0644
_patch File 7.95 KB 0644
_path_commands File 2.77 KB 0644
_path_files File 26.93 KB 0644
_pax File 2.72 KB 0644
_pbm File 25.25 KB 0644
_pbuilder File 1.24 KB 0644
_pdf File 423 B 0644
_pdftk File 1.34 KB 0644
_perforce File 85.99 KB 0644
_perl File 5.21 KB 0644
_perl_basepods File 716 B 0644
_perl_modules File 4.56 KB 0644
_perldoc File 2.28 KB 0644
_pfctl File 4.11 KB 0644
_pfexec File 670 B 0644
_pgrep File 2.09 KB 0644
_php File 2.99 KB 0644
_physical_volumes File 124 B 0644
_pick_variant File 918 B 0644
_pids File 1.59 KB 0644
_pine File 2.88 KB 0644
_ping File 1.69 KB 0644
_piuparts File 976 B 0644
_pkg-config File 2.11 KB 0644
_pkg5 File 12.15 KB 0644
_pkg_instance File 353 B 0644
_pkgadd File 1012 B 0644
_pkginfo File 613 B 0644
_pkgrm File 551 B 0644
_pkgtool File 2.38 KB 0644
_pon File 443 B 0644
_portaudit File 563 B 0644
_portlint File 748 B 0644
_portmaster File 3.88 KB 0644
_ports File 285 B 0644
_portsnap File 1.01 KB 0644
_postfix File 530 B 0644
_powerd File 628 B 0644
_prcs File 6.69 KB 0644
_precommand File 188 B 0644
_prefix File 1.58 KB 0644
_print File 3.23 KB 0644
_printenv File 104 B 0644
_printers File 3.13 KB 0644
_procstat File 706 B 0644
_prompt File 296 B 0644
_prstat File 1.77 KB 0644
_ps File 333 B 0644
_ps1234 File 3.34 KB 0644
_pscp File 716 B 0644
_pspdf File 341 B 0644
_psutils File 3.56 KB 0644
_ptree File 449 B 0644
_pump File 1.41 KB 0644
_putclip File 538 B 0644
_pydoc File 436 B 0644
_python File 2.03 KB 0644
_qemu File 2.47 KB 0644
_qiv File 2.58 KB 0644
_qtplay File 525 B 0644
_quilt File 9.81 KB 0644
_raggle File 2.68 KB 0644
_rake File 2.78 KB 0644
_ranlib File 403 B 0644
_rar File 4.51 KB 0644
_rcs File 766 B 0644
_read File 919 B 0644
_read_comp File 3.76 KB 0644
_readshortcut File 1.03 KB 0644
_rebootin File 574 B 0644
_redirect File 421 B 0644
_regex_arguments File 2.44 KB 0644
_regex_words File 746 B 0644
_remote_files File 2.47 KB 0644
_renice File 424 B 0644
_reprepro File 2.5 KB 0644
_requested File 268 B 0644
_retrieve_cache File 732 B 0644
_retrieve_mac_apps File 3.23 KB 0644
_ri File 3.72 KB 0644
_rlogin File 1.81 KB 0644
_rm File 1.53 KB 0644
_rpm File 10.77 KB 0644
_rpmbuild File 3.31 KB 0644
_rrdtool File 491 B 0644
_rsync File 11.54 KB 0644
_rubber File 2.64 KB 0644
_ruby File 2.84 KB 0644
_sablotron File 1.77 KB 0644
_samba File 3.36 KB 0644
_savecore File 228 B 0644
_sccs File 6.04 KB 0644
_sched File 467 B 0644
_schedtool File 916 B 0644
_schroot File 1.46 KB 0644
_screen File 6.6 KB 0644
_sed File 986 B 0644
_sep_parts File 3.71 KB 0644
_service File 1.02 KB 0644
_services File 951 B 0644
_set File 1.44 KB 0644
_set_command File 815 B 0644
_setfacl File 1.96 KB 0644
_setopt File 193 B 0644
_setup File 1.91 KB 0644
_setxkbmap File 2.37 KB 0644
_sh File 517 B 0644
_showmount File 428 B 0644
_signals File 1013 B 0644
_sisu File 3.84 KB 0644
_slrn File 1.1 KB 0644
_smit File 856 B 0644
_snoop File 1.8 KB 0644
_socket File 1.06 KB 0644
_sockstat File 635 B 0644
_softwareupdate File 2.28 KB 0644
_sort File 1.97 KB 0644
_source File 226 B 0644
_spamassassin File 475 B 0644
_sqlite File 1.55 KB 0644
_sqsh File 2.11 KB 0644
_ssh File 21.45 KB 0644
_sshfs File 752 B 0644
_stat File 568 B 0644
_stgit File 952 B 0644
_store_cache File 1.7 KB 0644
_strace File 6.56 KB 0644
_strip File 2.31 KB 0644
_stty File 762 B 0644
_su File 1.9 KB 0644
_sub_commands File 136 B 0644
_subscript File 4.19 KB 0644
_subversion File 10.16 KB 0644
_sudo File 1.13 KB 0644
_suffix_alias_files File 525 B 0644
_surfraw File 17.72 KB 0644
_svcadm File 1.42 KB 0644
_svccfg File 2.07 KB 0644
_svcprop File 793 B 0644
_svcs File 1 KB 0644
_svcs_fmri File 2.82 KB 0644
_svn-buildpackage File 2.58 KB 0644
_sysctl File 1.67 KB 0644
_systemd File 44.41 KB 0755
_tags File 1.43 KB 0644
_tar File 5.97 KB 0644
_tar_archive File 1014 B 0644
_tardy File 678 B 0644
_tcpdump File 4.2 KB 0644
_tcpsys File 1002 B 0644
_tcptraceroute File 583 B 0644
_telnet File 2.84 KB 0644
_terminals File 210 B 0644
_tex File 1.92 KB 0644
_texi File 129 B 0644
_texinfo File 8.52 KB 0644
_tidy File 7.13 KB 0644
_tiff File 7.06 KB 0644
_tilde File 732 B 0644
_tilde_files File 676 B 0644
_time_zone File 222 B 0644
_tin File 2.07 KB 0644
_tla File 17.58 KB 0644
_tmux File 49.02 KB 0644
_todo.sh File 4.07 KB 0644
_toilet File 863 B 0644
_toolchain-source File 328 B 0644
_topgit File 177 B 0644
_totd File 287 B 0644
_tpb File 975 B 0644
_tpconfig File 1.09 KB 0644
_tracepath File 87 B 0644
_trap File 101 B 0644
_tree File 1.87 KB 0644
_ttyctl File 113 B 0644
_tune2fs File 1.37 KB 0644
_twidge File 1.67 KB 0644
_twisted File 2.77 KB 0644
_typeset File 3.71 KB 0644
_ulimit File 1020 B 0644
_uml File 5.14 KB 0644
_unace File 472 B 0644
_uname File 2.5 KB 0644
_unexpand File 620 B 0644
_unhash File 555 B 0644
_uniq File 1.35 KB 0644
_unison File 5.39 KB 0644
_units File 2.75 KB 0644
_unsetopt File 190 B 0644
_update-alternatives File 1.73 KB 0644
_update-rc.d File 637 B 0644
_urls File 5.91 KB 0644
_urpmi File 13.5 KB 0644
_urxvt File 2.71 KB 0644
_uscan File 1.01 KB 0644
_user_admin File 1.9 KB 0644
_user_at_host File 729 B 0644
_user_expand File 3.5 KB 0644
_users File 251 B 0644
_users_on File 253 B 0644
_uzbl File 304 B 0644
_valgrind File 4.87 KB 0644
_value File 1.58 KB 0644
_values File 3.69 KB 0644
_vared File 326 B 0644
_vars File 469 B 0644
_vcsh File 524 B 0644
_vim File 5.34 KB 0644
_vim-addons File 1.62 KB 0644
_vnc File 4.06 KB 0644
_volume_groups File 87 B 0644
_vorbis File 5.57 KB 0644
_vorbiscomment File 617 B 0644
_vserver File 2.99 KB 0644
_vux File 1.77 KB 0644
_w3m File 4.42 KB 0644
_wait File 66 B 0644
_wajig File 2.45 KB 0644
_wakeup_capable_devices File 439 B 0644
_wanna-build File 2.02 KB 0644
_wanted File 183 B 0644
_webbrowser File 210 B 0644
_wget File 7.39 KB 0644
_whereis File 36 B 0644
_which File 1.11 KB 0644
_whois File 4.71 KB 0644
_wiggle File 1.09 KB 0644
_wpa_cli File 825 B 0644
_x_arguments File 600 B 0644
_x_borderwidth File 125 B 0644
_x_color File 1007 B 0644
_x_colormapid File 396 B 0644
_x_cursor File 409 B 0644
_x_display File 75 B 0644
_x_extension File 484 B 0644
_x_font File 320 B 0644
_x_geometry File 125 B 0644
_x_keysym File 615 B 0644
_x_locale File 120 B 0644
_x_modifier File 153 B 0644
_x_name File 116 B 0644
_x_resource File 124 B 0644
_x_selection_timeout File 130 B 0644
_x_title File 118 B 0644
_x_utils File 5.68 KB 0644
_x_visual File 272 B 0644
_x_window File 402 B 0644
_xargs File 502 B 0644
_xauth File 2.52 KB 0644
_xclip File 969 B 0644
_xdvi File 1.66 KB 0644
_xfig File 1.93 KB 0644
_xft_fonts File 1.32 KB 0644
_xloadimage File 3.81 KB 0644
_xmlsoft File 6.28 KB 0644
_xmms2 File 5.26 KB 0644
_xmodmap File 2.22 KB 0644
_xournal File 126 B 0644
_xpdf File 1.72 KB 0644
_xrandr File 2.09 KB 0644
_xscreensaver File 823 B 0644
_xset File 5.07 KB 0644
_xt_arguments File 1.7 KB 0644
_xt_session_id File 40 B 0644
_xterm File 939 B 0644
_xv File 2.43 KB 0644
_xwit File 4.63 KB 0644
_xz File 4.1 KB 0644
_yafc File 1.8 KB 0644
_yast File 525 B 0644
_yast2 File 819 B 0644
_yodl File 658 B 0644
_yp File 3.17 KB 0644
_yum File 8.08 KB 0644
_zargs File 1.26 KB 0644
_zattr File 569 B 0644
_zcalc_line File 1.68 KB 0644
_zcat File 99 B 0644
_zcompile File 927 B 0644
_zdump File 112 B 0644
_zed File 179 B 0644
_zfs File 13.76 KB 0644
_zfs_dataset File 2.5 KB 0644
_zfs_keysource_props File 408 B 0644
_zfs_pool File 51 B 0644
_zftp File 2.52 KB 0644
_zip File 5.25 KB 0644
_zle File 2.26 KB 0644
_zlogin File 437 B 0644
_zmodload File 2.24 KB 0644
_zmv File 805 B 0644
_zoneadm File 3.33 KB 0644
_zones File 220 B 0644
_zpool File 8.45 KB 0644
_zpty File 1.96 KB 0644
_zsh-mime-handler File 719 B 0644
_zstyle File 14.22 KB 0644
_ztodo File 586 B 0644
_zypper File 1.99 KB 0644
add-zsh-hook File 1.85 KB 0644
age File 1.99 KB 0644
allopt File 770 B 0644
backward-kill-word-match File 593 B 0644
backward-word-match File 450 B 0644
bashcompinit File 4.88 KB 0644
calendar File 11.47 KB 0644
calendar_add File 8.08 KB 0755
calendar_edit File 794 B 0644
calendar_lockfiles File 1.59 KB 0644
calendar_parse File 5.97 KB 0644
calendar_read File 1.24 KB 0644
calendar_scandate File 28.47 KB 0644
calendar_show File 1 KB 0644
calendar_showdate File 1.43 KB 0644
calendar_sort File 1.88 KB 0644
capitalize-word-match File 373 B 0644
catch File 1.22 KB 0644
cdr File 11.24 KB 0644
checkmail File 817 B 0755
chpwd_recent_add File 506 B 0644
chpwd_recent_dirs File 1.56 KB 0644
chpwd_recent_filehandler File 1.15 KB 0644
colors File 3.34 KB 0644
compaudit File 4.78 KB 0644
compdump File 3.92 KB 0644
compinit File 15.92 KB 0644
compinstall File 60.06 KB 0644
copy-earlier-word File 795 B 0644
cycle-completion-positions File 497 B 0644
define-composed-chars File 8.48 KB 0644
delete-whole-word-match File 1.67 KB 0644
down-case-word-match File 376 B 0644
down-line-or-beginning-search File 586 B 0644
edit-command-line File 550 B 0644
forward-word-match File 977 B 0644
getjobs File 827 B 0644
harden File 96 B 0755
history-beginning-search-menu File 3.4 KB 0644
history-pattern-search File 2.12 KB 0644
history-search-end File 812 B 0644
incarg File 1002 B 0644
incremental-complete-word File 3.78 KB 0644
insert-composed-char File 5.11 KB 0644
insert-files File 997 B 0644
insert-unicode-char File 693 B 0644
is-at-least File 1.34 KB 0644
keeper File 3.15 KB 0644
keymap+widget File 2.6 KB 0644
kill-word-match File 591 B 0644
match-word-context File 992 B 0644
match-words-by-style File 8.85 KB 0644
mere File 2.01 KB 0644
modify-current-argument File 2.55 KB 0644
move-line-in-buffer File 424 B 0644
narrow-to-region File 3.46 KB 0644
narrow-to-region-invisible File 211 B 0644
nslookup File 1.1 KB 0644
pick-web-browser File 4.76 KB 0644
predict-on File 4.6 KB 0644
prompt_adam1_setup File 1.77 KB 0644
prompt_adam2_setup File 3.99 KB 0644
prompt_bart_setup File 7.15 KB 0644
prompt_bigfade_setup File 1.81 KB 0644
prompt_clint_setup File 1.66 KB 0644
prompt_elite2_setup File 1.6 KB 0644
prompt_elite_setup File 1.49 KB 0644
prompt_fade_setup File 1.77 KB 0644
prompt_fire_setup File 1.94 KB 0644
prompt_off_setup File 121 B 0644
prompt_oliver_setup File 1.43 KB 0644
prompt_pws_setup File 663 B 0644
prompt_redhat_setup File 278 B 0644
prompt_special_chars File 775 B 0644
prompt_suse_setup File 260 B 0644
prompt_walters_setup File 558 B 0644
prompt_zefram_setup File 509 B 0644
promptinit File 5.8 KB 0644
promptnl File 3.23 KB 0644
quote-and-complete-word File 1.41 KB 0644
read-from-minibuffer File 996 B 0644
regexp-replace File 1.01 KB 0644
relative File 888 B 0644
replace-string File 970 B 0644
replace-string-again File 1.81 KB 0644
run-help File 2.85 KB 0755
run-help-git File 144 B 0644
run-help-openssl File 59 B 0644
run-help-p4 File 78 B 0644
run-help-sudo File 56 B 0644
run-help-svk File 42 B 0644
run-help-svn File 42 B 0644
select-word-style File 2.18 KB 0644
send-invisible File 2.54 KB 0644
smart-insert-last-word File 4.05 KB 0644
split-shell-arguments File 1.54 KB 0644
sticky-note File 4.59 KB 0755
tcp_alias File 4 KB 0644
tcp_close File 2.91 KB 0644
tcp_command File 68 B 0644
tcp_expect File 4.06 KB 0644
tcp_fd_handler File 970 B 0644
tcp_log File 2.23 KB 0644
tcp_open File 6.63 KB 0644
tcp_output File 1.75 KB 0644
tcp_point File 443 B 0644
tcp_proxy File 849 B 0644
tcp_read File 6.89 KB 0644
tcp_rename File 850 B 0644
tcp_send File 1.94 KB 0644
tcp_sess File 1.01 KB 0644
tcp_shoot File 329 B 0644
tcp_spam File 2.84 KB 0644
tcp_talk File 1.44 KB 0644
tcp_wait File 459 B 0644
tetris File 5.31 KB 0644
throw File 1022 B 0644
transpose-lines File 1.06 KB 0644
transpose-words-match File 1.3 KB 0644
up-case-word-match File 377 B 0644
up-line-or-beginning-search File 564 B 0644
url-quote-magic File 5.66 KB 0644
vcs_info File 3.46 KB 0644
vcs_info_hookadd File 450 B 0644
vcs_info_hookdel File 882 B 0644
vcs_info_lastmsg File 493 B 0644
vcs_info_printsys File 1.27 KB 0644
vcs_info_setsys File 598 B 0644
which-command File 1.01 KB 0644
xtermctl File 4.09 KB 0644
zargs File 8.72 KB 0644
zcalc File 6.96 KB 0755
zed File 2.11 KB 0755
zed-set-file-name File 145 B 0644
zfanon File 1.86 KB 0644
zfautocheck File 1.29 KB 0644
zfcd File 1.89 KB 0644
zfcd_match File 1.16 KB 0644
zfcget File 2.03 KB 0644
zfclose File 90 B 0644
zfcput File 2.43 KB 0644
zfdir File 3.15 KB 0644
zffcache File 729 B 0644
zfgcp File 1.91 KB 0644
zfget File 1.73 KB 0644
zfget_match File 824 B 0644
zfgoto File 2.2 KB 0644
zfhere File 181 B 0644
zfinit File 2.49 KB 0644
zfls File 208 B 0644
zfmark File 1.41 KB 0644
zfopen File 1.16 KB 0644
zfparams File 687 B 0644
zfpcp File 1.27 KB 0644
zfput File 1.41 KB 0644
zfrglob File 2.09 KB 0644
zfrtime File 1.33 KB 0644
zfsession File 1.61 KB 0644
zfstat File 1.98 KB 0644
zftp_chpwd File 1.35 KB 0644
zftp_progress File 2.03 KB 0644
zftransfer File 1.54 KB 0644
zftype File 613 B 0644
zfuget File 3.83 KB 0644
zfuput File 2.62 KB 0644
zkbd File 7.12 KB 0755
zmathfuncdef File 2.23 KB 0644
zmv File 10.88 KB 0644
zrecompile File 6.04 KB 0644
zsh-mime-contexts File 491 B 0644
zsh-mime-handler File 8.71 KB 0644
zsh-mime-setup File 11.09 KB 0644
zsh-newuser-install File 29.33 KB 0644
zsh_directory_name_cdr File 527 B 0644
zstyle+ File 1.24 KB 0644
ztodo File 1.37 KB 0644