Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: zsh | Distribution: openSUSE Tumbleweed |
Version: 5.9 | Vendor: openSUSE |
Release: 9.1 | Build date: Mon Jul 15 16:02:19 2024 |
Group: System/Shells | Build host: reproducible |
Size: 9643998 | Source RPM: zsh-5.9-9.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://www.zsh.org | |
Summary: Shell with comprehensive completion |
Zsh is a UNIX command interpreter (shell) that resembles the Korn shell (ksh). It is not completely compatible. It includes many enhancements, notably in the command-line editor, options for customizing its behavior, file name globbing, features to make C-shell (csh) users feel at home, and extra features drawn from tcsh (another `custom' shell). Zsh is well known for its command line completion.
MIT
* Mon Jul 15 2024 Martin Jambor <mjambor@suse.com> - Backport zsh-ab4d62eb975a4c4c51dd35822665050e2ddc6918.patch and zsh-4c89849c98172c951a9def3690e8647dae76308f.patch and add autoconf to build requirements to make the package build with GCC 14. [boo#1225958] * Tue Feb 20 2024 Dominique Leuenberger <dimstar@opensuse.org> - Use %patch -P N instead of deprecated %patchN. * Thu Nov 30 2023 Paolo Perego <paolo.perego@suse.com> - add pipe-less-and-signals-handling.patch (bsc#1217304). It fixes a problem with signal handling and less when the job is suspended in a user defined concatenated commands function. * Thu Aug 03 2023 Andreas Schwab <schwab@suse.de> - Enable testsuite in qemu build * Tue Feb 28 2023 Paolo Perego <paolo.perego@suse.com> - Disabled zsh-sh subpackage generation for Leap 15.4 to prevent an error when building the package. * Tue Feb 28 2023 pgajdos@suse.com - don't require yodl for build, doc is not regenerated anyway * Tue Dec 27 2022 Ludwig Nussel <lnussel@suse.com> - Replace transitional %usrmerged macro with regular version check (boo#1206798) * Sat Oct 22 2022 Luciano Santos <luc14n0@opensuse.org> - Add zsh-sh subpackage to offer Zsh users a "native" way to handle /bin/sh scripts and use an SH shell with the capabilities of Zsh itself to emulate a Bourne shell. An 'sh' symlink pointing to the Zsh binary is all that is needed for it to emulate the Bourne shell, it is similar to the use of `emulate sh` Zsh's built-in command or the `zsh --emulate sh` shell command. - Drop deprecated use of install_info(_delete) post(un) macros. RPM file triggers have replaced their functionality since 2019. * Mon Sep 12 2022 Dirk Müller <dmueller@suse.com> - add egrep-deprecation.patch (bsc#1203241) * Sun May 15 2022 Dirk Müller <dmueller@suse.com> - update to 5.9: zsh 5.9 is dedicated to the memory of Sven Guckes, who was, amongst other things, a long-time zsh advocate. For more information, see: https://linuxnews.de/2022/02/sven-guckes-verstorben/ https://groups.google.com/g/vim_announce/c/MJBKVd-xrEE/m/joVNaDgAAgAJ When unsetting a hash element, the string enclosed in square brackets is interpreted literally after any normal command-line-argument expansions. Thus unset "hash[$key]" first expands $key as usual for a double-quoted string, and then interprets that result as the exact hash element to unset. This differs from previous versions of the shell, which would also remove a leading backslash for an unusual subset of characters in the expansion of $key. Note this also means, for example, that now unset 'hash[ab]cd]' unsets the element with key "ab]cd" rather than silently doing nothing. The function command learnt a -T option to declare a function and enable tracing for it simultaneously. The option SHORT_REPEAT was added to enable the short syntax of SHORT_LOOPS for the repeat command only. It is disabled by default. The _arguments function now supports NUL-delimiting optargs in the opt_args array via the -0 option. Developers of completion functions should find this easier to handle reliably than the default colon-delimiting behaviour. The zsh/system module's `zsystem flock` command learnt an -i option to set the wait interval used with -t. Additionally, -t now supports fractional seconds. The option CLOBBER_EMPTY was added to enable the overwrite behaviour of CLOBBER for empty files only. It is disabled by default. A (-) expansion flag was added. It works like (n) but correctly sorts negative numbers. The (*) expansion flag enables EXTENDED_GLOB for pattern matching. For example, ${(*)sample/(#b)*(pat)*/${match[1]}} uses backreferences even if EXTENDED_GLOB is not otherwise set. However, this does not descend into nested exapansions, and doubling as (**) does not disable EXTENDED_GLOB. The compinit function learnt a -w option to explain why compdump runs. When run without the -i or -u options and compaudit discovers security issues, answering "y" to the "Ignore insecure ..." prompt removes the insecure elements (like the -i option) where previously it ignored the result (thus formerly like the -u option). Further, removing those elements includes dropping directories from the $fpath array. The zsh/datetime module's strftime builtin learnt an -n option to omit the trailing newline when printing a formatted time. The XTRACE option is now disabled while running user-defined completion widgets. This corresponds to long-standing behavior of other user ZLE widgets. Use the _complete_debug widget to capture XTRACE output, or use "functions -T" to enable tracing of specific completion functions. The fc builtin learnt an -s option which is a POSIX equivalent to the `fc -e-` method of re-executing a command without invoking an editor. The option CASE_PATHS was added to control how NO_CASE_GLOB behaves. NO_CASE_GLOB + NO_CASE_PATHS is equivalent to the current NO_CASE_GLOB behaviour. NO_CASE_GLOB + CASE_PATHS treats only path components that contain globbing characters as case-insensitive; this behaviour may yield more predictable results on case-sensitive file systems. NO_CASE_PATHS is the default. With the new TYPESET_TO_UNSET option set, "typeset foo" leaves foo unset, in contrast to the default behavior which assigns foo="". Any parameter attributes such as numeric type, sorting, and padding are retained until the parameter is explicitly unset or a conflicting value is assigned. This is similar to default behavior of bash and ksh. This option is disabled by default. The compadd builtin's -D option can now be specified more than once. The zsh/zutil module's zformat builtin learnt an -F option which behaves like -f except that ternary expressions check for existence instead of doing math evaluation. The conventional syntax used to indicate units, ranges, and default values in completion descriptions (e.g. `timeout (seconds) (0-60) [20]`) is now recognised by the completion system itself. These components are parsed out of the description and can be individually styled. A _numbers helper function has been added to help function authors offer rich completion for these values. The log builtin, WATCH parameter, et al., have been broken out into a separate module, zsh/watch. The module is enabled by default. The zsh/watch module's WATCHFMT parameter now supports colours via the %F and %K escapes. The STTY parameter can now be set to an empty string before running a command to automatically restore terminal settings after the command finishes. The "jobs" command and "$jobstates" and related parameters can report on parent shell jobs even in subshells. This is a snapshot of the parent state, frozen at the point the subshell started. However, if a subshell starts its own background jobs, the parent state is discarded in order to report on those new jobs. - drop ncurses-fix.patch: upstream * Sun Mar 20 2022 Dirk Müller <dmueller@suse.com> - update to 5.8.1 (bsc#1196435, CVE-2021-45444): * CVE-2021-45444: Some prompt expansion sequences, such as %F, support 'arguments' which are themselves expanded in case they contain colour values, etc. This additional expansion would trigger PROMPT_SUBST evaluation, if enabled. This could be abused to execute code the user didn't expect. e.g., given a certain prompt configuration, an attacker could trick a user into executing arbitrary code by having them check out a Git branch with a specially crafted name. This is fixed in the shell itself by no longer performing PROMPT_SUBST evaluation on these prompt-expansion arguments. Users who are concerned about an exploit but unable to update their binaries may apply the partial work-around described in the file Etc/CVE-2021-45444-VCS_Info-workaround.patch included with the shell source. [ Reported by RyotaK <security@ryotak.me>. Additional thanks to Marc Cornellà <hello@mcornella.com>. ]
/etc/zprofile /etc/zsh_completion.d /etc/zshenv /etc/zshrc /usr/bin/zsh /usr/lib64/zsh /usr/lib64/zsh/5.9 /usr/lib64/zsh/5.9/zsh /usr/lib64/zsh/5.9/zsh/attr.so /usr/lib64/zsh/5.9/zsh/cap.so /usr/lib64/zsh/5.9/zsh/clone.so /usr/lib64/zsh/5.9/zsh/compctl.so /usr/lib64/zsh/5.9/zsh/complete.so /usr/lib64/zsh/5.9/zsh/complist.so /usr/lib64/zsh/5.9/zsh/computil.so /usr/lib64/zsh/5.9/zsh/curses.so /usr/lib64/zsh/5.9/zsh/datetime.so /usr/lib64/zsh/5.9/zsh/deltochar.so /usr/lib64/zsh/5.9/zsh/example.so /usr/lib64/zsh/5.9/zsh/files.so /usr/lib64/zsh/5.9/zsh/langinfo.so /usr/lib64/zsh/5.9/zsh/mapfile.so /usr/lib64/zsh/5.9/zsh/mathfunc.so /usr/lib64/zsh/5.9/zsh/nearcolor.so /usr/lib64/zsh/5.9/zsh/net /usr/lib64/zsh/5.9/zsh/net/socket.so /usr/lib64/zsh/5.9/zsh/net/tcp.so /usr/lib64/zsh/5.9/zsh/newuser.so /usr/lib64/zsh/5.9/zsh/param /usr/lib64/zsh/5.9/zsh/param/private.so /usr/lib64/zsh/5.9/zsh/parameter.so /usr/lib64/zsh/5.9/zsh/pcre.so /usr/lib64/zsh/5.9/zsh/regex.so /usr/lib64/zsh/5.9/zsh/rlimits.so /usr/lib64/zsh/5.9/zsh/sched.so /usr/lib64/zsh/5.9/zsh/stat.so /usr/lib64/zsh/5.9/zsh/system.so /usr/lib64/zsh/5.9/zsh/termcap.so /usr/lib64/zsh/5.9/zsh/terminfo.so /usr/lib64/zsh/5.9/zsh/watch.so /usr/lib64/zsh/5.9/zsh/zftp.so /usr/lib64/zsh/5.9/zsh/zle.so /usr/lib64/zsh/5.9/zsh/zleparameter.so /usr/lib64/zsh/5.9/zsh/zprof.so /usr/lib64/zsh/5.9/zsh/zpty.so /usr/lib64/zsh/5.9/zsh/zselect.so /usr/lib64/zsh/5.9/zsh/zutil.so /usr/share/doc/packages/zsh /usr/share/doc/packages/zsh/BUGS /usr/share/doc/packages/zsh/CONTRIBUTORS /usr/share/doc/packages/zsh/CVE-2021-45444-VCS_Info-workaround.patch /usr/share/doc/packages/zsh/ChangeLog /usr/share/doc/packages/zsh/ChangeLog-3.0 /usr/share/doc/packages/zsh/ChangeLog-3.1 /usr/share/doc/packages/zsh/ChangeLog-4.1 /usr/share/doc/packages/zsh/ChangeLog-4.3 /usr/share/doc/packages/zsh/FAQ /usr/share/doc/packages/zsh/FEATURES /usr/share/doc/packages/zsh/FTP-README /usr/share/doc/packages/zsh/LICENCE /usr/share/doc/packages/zsh/MACHINES /usr/share/doc/packages/zsh/META-FAQ /usr/share/doc/packages/zsh/NEWS /usr/share/doc/packages/zsh/NEWS-4.3 /usr/share/doc/packages/zsh/README /usr/share/doc/packages/zsh/STD-TODO /usr/share/doc/packages/zsh/TODO /usr/share/doc/packages/zsh/changelog2html.pl /usr/share/doc/packages/zsh/compctl-examples /usr/share/doc/packages/zsh/completion-style-guide /usr/share/doc/packages/zsh/creating-a-release.txt /usr/share/doc/packages/zsh/intro.ps /usr/share/doc/packages/zsh/pubring.pgp /usr/share/doc/packages/zsh/relnote_4.3.10.txt /usr/share/doc/packages/zsh/relnote_4.3.12.txt /usr/share/doc/packages/zsh/relnote_4.3.5.txt /usr/share/doc/packages/zsh/relnote_4.3.6.txt /usr/share/doc/packages/zsh/relnote_4.3.7.txt /usr/share/doc/packages/zsh/relnote_4.3.8.txt /usr/share/doc/packages/zsh/relnote_4.3.9.txt /usr/share/doc/packages/zsh/relnote_5.0.0.txt /usr/share/doc/packages/zsh/zsh-development-guide /usr/share/info/zsh.info-1.gz /usr/share/info/zsh.info-2.gz /usr/share/info/zsh.info-3.gz /usr/share/info/zsh.info-4.gz /usr/share/info/zsh.info-5.gz /usr/share/info/zsh.info-6.gz /usr/share/info/zsh.info.gz /usr/share/man/man1/zsh.1.gz /usr/share/man/man1/zshall.1.gz /usr/share/man/man1/zshbuiltins.1.gz /usr/share/man/man1/zshcalsys.1.gz /usr/share/man/man1/zshcompctl.1.gz /usr/share/man/man1/zshcompsys.1.gz /usr/share/man/man1/zshcompwid.1.gz /usr/share/man/man1/zshcontrib.1.gz /usr/share/man/man1/zshexpn.1.gz /usr/share/man/man1/zshmisc.1.gz /usr/share/man/man1/zshmodules.1.gz /usr/share/man/man1/zshoptions.1.gz /usr/share/man/man1/zshparam.1.gz /usr/share/man/man1/zshroadmap.1.gz /usr/share/man/man1/zshtcpsys.1.gz /usr/share/man/man1/zshzftpsys.1.gz /usr/share/man/man1/zshzle.1.gz /usr/share/zsh /usr/share/zsh/5.9 /usr/share/zsh/5.9/help /usr/share/zsh/5.9/help/alias /usr/share/zsh/5.9/help/autoload /usr/share/zsh/5.9/help/bg /usr/share/zsh/5.9/help/bindkey /usr/share/zsh/5.9/help/break /usr/share/zsh/5.9/help/builtin /usr/share/zsh/5.9/help/bye /usr/share/zsh/5.9/help/cap /usr/share/zsh/5.9/help/cd /usr/share/zsh/5.9/help/chdir /usr/share/zsh/5.9/help/clone /usr/share/zsh/5.9/help/colon /usr/share/zsh/5.9/help/command /usr/share/zsh/5.9/help/comparguments /usr/share/zsh/5.9/help/compcall /usr/share/zsh/5.9/help/compctl /usr/share/zsh/5.9/help/compdescribe /usr/share/zsh/5.9/help/compfiles /usr/share/zsh/5.9/help/compgroups /usr/share/zsh/5.9/help/compquote /usr/share/zsh/5.9/help/comptags /usr/share/zsh/5.9/help/comptry /usr/share/zsh/5.9/help/compvalues /usr/share/zsh/5.9/help/continue /usr/share/zsh/5.9/help/declare /usr/share/zsh/5.9/help/dirs /usr/share/zsh/5.9/help/disable /usr/share/zsh/5.9/help/disown /usr/share/zsh/5.9/help/dot /usr/share/zsh/5.9/help/echo /usr/share/zsh/5.9/help/echotc /usr/share/zsh/5.9/help/echoti /usr/share/zsh/5.9/help/emulate /usr/share/zsh/5.9/help/enable /usr/share/zsh/5.9/help/eval /usr/share/zsh/5.9/help/exec /usr/share/zsh/5.9/help/exit /usr/share/zsh/5.9/help/export /usr/share/zsh/5.9/help/false /usr/share/zsh/5.9/help/fc /usr/share/zsh/5.9/help/fg /usr/share/zsh/5.9/help/float /usr/share/zsh/5.9/help/functions /usr/share/zsh/5.9/help/getcap /usr/share/zsh/5.9/help/getln /usr/share/zsh/5.9/help/getopts /usr/share/zsh/5.9/help/hash /usr/share/zsh/5.9/help/history /usr/share/zsh/5.9/help/integer /usr/share/zsh/5.9/help/jobs /usr/share/zsh/5.9/help/kill /usr/share/zsh/5.9/help/let /usr/share/zsh/5.9/help/limit /usr/share/zsh/5.9/help/local /usr/share/zsh/5.9/help/logout /usr/share/zsh/5.9/help/noglob /usr/share/zsh/5.9/help/popd /usr/share/zsh/5.9/help/print /usr/share/zsh/5.9/help/printf /usr/share/zsh/5.9/help/pushd /usr/share/zsh/5.9/help/pushln /usr/share/zsh/5.9/help/pwd /usr/share/zsh/5.9/help/r /usr/share/zsh/5.9/help/read /usr/share/zsh/5.9/help/readonly /usr/share/zsh/5.9/help/rehash /usr/share/zsh/5.9/help/return /usr/share/zsh/5.9/help/sched /usr/share/zsh/5.9/help/set /usr/share/zsh/5.9/help/setcap /usr/share/zsh/5.9/help/setopt /usr/share/zsh/5.9/help/shift /usr/share/zsh/5.9/help/source /usr/share/zsh/5.9/help/stat /usr/share/zsh/5.9/help/suspend /usr/share/zsh/5.9/help/test /usr/share/zsh/5.9/help/times /usr/share/zsh/5.9/help/trap /usr/share/zsh/5.9/help/true /usr/share/zsh/5.9/help/ttyctl /usr/share/zsh/5.9/help/type /usr/share/zsh/5.9/help/typeset /usr/share/zsh/5.9/help/ulimit /usr/share/zsh/5.9/help/umask /usr/share/zsh/5.9/help/unalias /usr/share/zsh/5.9/help/unfunction /usr/share/zsh/5.9/help/unhash /usr/share/zsh/5.9/help/unlimit /usr/share/zsh/5.9/help/unset /usr/share/zsh/5.9/help/unsetopt /usr/share/zsh/5.9/help/vared /usr/share/zsh/5.9/help/wait /usr/share/zsh/5.9/help/whence /usr/share/zsh/5.9/help/where /usr/share/zsh/5.9/help/which /usr/share/zsh/5.9/help/zcompile /usr/share/zsh/5.9/help/zformat /usr/share/zsh/5.9/help/zftp /usr/share/zsh/5.9/help/zle /usr/share/zsh/5.9/help/zmodload /usr/share/zsh/5.9/help/zparseopts /usr/share/zsh/5.9/help/zprof /usr/share/zsh/5.9/help/zpty /usr/share/zsh/5.9/help/zregexparse /usr/share/zsh/5.9/help/zsocket /usr/share/zsh/5.9/help/zstyle /usr/share/zsh/5.9/help/ztcp /usr/share/zsh/5.9/scripts /usr/share/zsh/5.9/scripts/newuser /usr/share/zsh/functions /usr/share/zsh/functions/Calendar /usr/share/zsh/functions/Calendar/after /usr/share/zsh/functions/Calendar/age /usr/share/zsh/functions/Calendar/before /usr/share/zsh/functions/Calendar/calendar /usr/share/zsh/functions/Calendar/calendar_add /usr/share/zsh/functions/Calendar/calendar_edit /usr/share/zsh/functions/Calendar/calendar_lockfiles /usr/share/zsh/functions/Calendar/calendar_parse /usr/share/zsh/functions/Calendar/calendar_read /usr/share/zsh/functions/Calendar/calendar_scandate /usr/share/zsh/functions/Calendar/calendar_show /usr/share/zsh/functions/Calendar/calendar_showdate /usr/share/zsh/functions/Calendar/calendar_sort /usr/share/zsh/functions/Chpwd /usr/share/zsh/functions/Chpwd/_cdr /usr/share/zsh/functions/Chpwd/cdr /usr/share/zsh/functions/Chpwd/chpwd_recent_add /usr/share/zsh/functions/Chpwd/chpwd_recent_dirs /usr/share/zsh/functions/Chpwd/chpwd_recent_filehandler /usr/share/zsh/functions/Chpwd/zsh_directory_name_cdr /usr/share/zsh/functions/Chpwd/zsh_directory_name_generic /usr/share/zsh/functions/Completion /usr/share/zsh/functions/Completion/Base /usr/share/zsh/functions/Completion/Base/_all_labels /usr/share/zsh/functions/Completion/Base/_all_matches /usr/share/zsh/functions/Completion/Base/_alternative /usr/share/zsh/functions/Completion/Base/_approximate /usr/share/zsh/functions/Completion/Base/_arg_compile /usr/share/zsh/functions/Completion/Base/_arguments /usr/share/zsh/functions/Completion/Base/_bash_completions /usr/share/zsh/functions/Completion/Base/_cache_invalid /usr/share/zsh/functions/Completion/Base/_call_function /usr/share/zsh/functions/Completion/Base/_call_program /usr/share/zsh/functions/Completion/Base/_combination /usr/share/zsh/functions/Completion/Base/_comp_locale /usr/share/zsh/functions/Completion/Base/_complete /usr/share/zsh/functions/Completion/Base/_complete_debug /usr/share/zsh/functions/Completion/Base/_complete_help /usr/share/zsh/functions/Completion/Base/_complete_help_generic /usr/share/zsh/functions/Completion/Base/_complete_tag /usr/share/zsh/functions/Completion/Base/_correct /usr/share/zsh/functions/Completion/Base/_correct_filename /usr/share/zsh/functions/Completion/Base/_correct_word /usr/share/zsh/functions/Completion/Base/_describe /usr/share/zsh/functions/Completion/Base/_description /usr/share/zsh/functions/Completion/Base/_dispatch /usr/share/zsh/functions/Completion/Base/_expand /usr/share/zsh/functions/Completion/Base/_expand_alias /usr/share/zsh/functions/Completion/Base/_expand_word /usr/share/zsh/functions/Completion/Base/_extensions /usr/share/zsh/functions/Completion/Base/_external_pwds /usr/share/zsh/functions/Completion/Base/_generic /usr/share/zsh/functions/Completion/Base/_guard /usr/share/zsh/functions/Completion/Base/_history /usr/share/zsh/functions/Completion/Base/_history_complete_word /usr/share/zsh/functions/Completion/Base/_ignored /usr/share/zsh/functions/Completion/Base/_list /usr/share/zsh/functions/Completion/Base/_main_complete /usr/share/zsh/functions/Completion/Base/_match /usr/share/zsh/functions/Completion/Base/_menu /usr/share/zsh/functions/Completion/Base/_message /usr/share/zsh/functions/Completion/Base/_most_recent_file /usr/share/zsh/functions/Completion/Base/_multi_parts /usr/share/zsh/functions/Completion/Base/_next_label /usr/share/zsh/functions/Completion/Base/_next_tags /usr/share/zsh/functions/Completion/Base/_normal /usr/share/zsh/functions/Completion/Base/_nothing /usr/share/zsh/functions/Completion/Base/_numbers /usr/share/zsh/functions/Completion/Base/_oldlist /usr/share/zsh/functions/Completion/Base/_pick_variant /usr/share/zsh/functions/Completion/Base/_prefix /usr/share/zsh/functions/Completion/Base/_read_comp /usr/share/zsh/functions/Completion/Base/_regex_arguments /usr/share/zsh/functions/Completion/Base/_regex_words /usr/share/zsh/functions/Completion/Base/_requested /usr/share/zsh/functions/Completion/Base/_retrieve_cache /usr/share/zsh/functions/Completion/Base/_sep_parts /usr/share/zsh/functions/Completion/Base/_sequence /usr/share/zsh/functions/Completion/Base/_set_command /usr/share/zsh/functions/Completion/Base/_setup /usr/share/zsh/functions/Completion/Base/_store_cache /usr/share/zsh/functions/Completion/Base/_sub_commands /usr/share/zsh/functions/Completion/Base/_tags /usr/share/zsh/functions/Completion/Base/_user_expand /usr/share/zsh/functions/Completion/Base/_values /usr/share/zsh/functions/Completion/Base/_wanted /usr/share/zsh/functions/Completion/Linux /usr/share/zsh/functions/Completion/Linux/_acpi /usr/share/zsh/functions/Completion/Linux/_acpitool /usr/share/zsh/functions/Completion/Linux/_alsa-utils /usr/share/zsh/functions/Completion/Linux/_analyseplugin /usr/share/zsh/functions/Completion/Linux/_basenc /usr/share/zsh/functions/Completion/Linux/_brctl /usr/share/zsh/functions/Completion/Linux/_btrfs /usr/share/zsh/functions/Completion/Linux/_capabilities /usr/share/zsh/functions/Completion/Linux/_chattr /usr/share/zsh/functions/Completion/Linux/_chcon /usr/share/zsh/functions/Completion/Linux/_choom /usr/share/zsh/functions/Completion/Linux/_chrt /usr/share/zsh/functions/Completion/Linux/_cpupower /usr/share/zsh/functions/Completion/Linux/_cryptsetup /usr/share/zsh/functions/Completion/Linux/_dkms /usr/share/zsh/functions/Completion/Linux/_e2label /usr/share/zsh/functions/Completion/Linux/_ethtool /usr/share/zsh/functions/Completion/Linux/_findmnt /usr/share/zsh/functions/Completion/Linux/_free /usr/share/zsh/functions/Completion/Linux/_fuse_arguments /usr/share/zsh/functions/Completion/Linux/_fuse_values /usr/share/zsh/functions/Completion/Linux/_fusermount /usr/share/zsh/functions/Completion/Linux/_gpasswd /usr/share/zsh/functions/Completion/Linux/_htop /usr/share/zsh/functions/Completion/Linux/_iconvconfig /usr/share/zsh/functions/Completion/Linux/_ionice /usr/share/zsh/functions/Completion/Linux/_ipset /usr/share/zsh/functions/Completion/Linux/_iptables /usr/share/zsh/functions/Completion/Linux/_iwconfig /usr/share/zsh/functions/Completion/Linux/_kpartx /usr/share/zsh/functions/Completion/Linux/_losetup /usr/share/zsh/functions/Completion/Linux/_lsattr /usr/share/zsh/functions/Completion/Linux/_lsblk /usr/share/zsh/functions/Completion/Linux/_lsns /usr/share/zsh/functions/Completion/Linux/_lsusb /usr/share/zsh/functions/Completion/Linux/_ltrace /usr/share/zsh/functions/Completion/Linux/_mat /usr/share/zsh/functions/Completion/Linux/_mat2 /usr/share/zsh/functions/Completion/Linux/_mdadm /usr/share/zsh/functions/Completion/Linux/_mii-tool /usr/share/zsh/functions/Completion/Linux/_modutils /usr/share/zsh/functions/Completion/Linux/_mondo /usr/share/zsh/functions/Completion/Linux/_networkmanager /usr/share/zsh/functions/Completion/Linux/_nsenter /usr/share/zsh/functions/Completion/Linux/_opkg /usr/share/zsh/functions/Completion/Linux/_perf /usr/share/zsh/functions/Completion/Linux/_pidof /usr/share/zsh/functions/Completion/Linux/_pkgtool /usr/share/zsh/functions/Completion/Linux/_pmap /usr/share/zsh/functions/Completion/Linux/_qdbus /usr/share/zsh/functions/Completion/Linux/_schedtool /usr/share/zsh/functions/Completion/Linux/_selinux_contexts /usr/share/zsh/functions/Completion/Linux/_selinux_roles /usr/share/zsh/functions/Completion/Linux/_selinux_types /usr/share/zsh/functions/Completion/Linux/_selinux_users /usr/share/zsh/functions/Completion/Linux/_setpriv /usr/share/zsh/functions/Completion/Linux/_setsid /usr/share/zsh/functions/Completion/Linux/_slabtop /usr/share/zsh/functions/Completion/Linux/_ss /usr/share/zsh/functions/Completion/Linux/_sshfs /usr/share/zsh/functions/Completion/Linux/_strace /usr/share/zsh/functions/Completion/Linux/_sysstat /usr/share/zsh/functions/Completion/Linux/_tload /usr/share/zsh/functions/Completion/Linux/_tpb /usr/share/zsh/functions/Completion/Linux/_tracepath /usr/share/zsh/functions/Completion/Linux/_tune2fs /usr/share/zsh/functions/Completion/Linux/_uml /usr/share/zsh/functions/Completion/Linux/_unshare /usr/share/zsh/functions/Completion/Linux/_valgrind /usr/share/zsh/functions/Completion/Linux/_vserver /usr/share/zsh/functions/Completion/Linux/_wakeup_capable_devices /usr/share/zsh/functions/Completion/Linux/_wipefs /usr/share/zsh/functions/Completion/Linux/_wpa_cli /usr/share/zsh/functions/Completion/Unix /usr/share/zsh/functions/Completion/Unix/_a2ps /usr/share/zsh/functions/Completion/Unix/_aap /usr/share/zsh/functions/Completion/Unix/_abcde /usr/share/zsh/functions/Completion/Unix/_absolute_command_paths /usr/share/zsh/functions/Completion/Unix/_ack /usr/share/zsh/functions/Completion/Unix/_adb /usr/share/zsh/functions/Completion/Unix/_ansible /usr/share/zsh/functions/Completion/Unix/_ant /usr/share/zsh/functions/Completion/Unix/_antiword /usr/share/zsh/functions/Completion/Unix/_apachectl /usr/share/zsh/functions/Completion/Unix/_apm /usr/share/zsh/functions/Completion/Unix/_arch_archives /usr/share/zsh/functions/Completion/Unix/_arch_namespace /usr/share/zsh/functions/Completion/Unix/_arp /usr/share/zsh/functions/Completion/Unix/_arping /usr/share/zsh/functions/Completion/Unix/_asciidoctor /usr/share/zsh/functions/Completion/Unix/_asciinema /usr/share/zsh/functions/Completion/Unix/_at /usr/share/zsh/functions/Completion/Unix/_attr /usr/share/zsh/functions/Completion/Unix/_augeas /usr/share/zsh/functions/Completion/Unix/_avahi /usr/share/zsh/functions/Completion/Unix/_awk /usr/share/zsh/functions/Completion/Unix/_base64 /usr/share/zsh/functions/Completion/Unix/_basename /usr/share/zsh/functions/Completion/Unix/_bash /usr/share/zsh/functions/Completion/Unix/_baudrates /usr/share/zsh/functions/Completion/Unix/_baz /usr/share/zsh/functions/Completion/Unix/_beep /usr/share/zsh/functions/Completion/Unix/_bibtex /usr/share/zsh/functions/Completion/Unix/_bind_addresses /usr/share/zsh/functions/Completion/Unix/_bison /usr/share/zsh/functions/Completion/Unix/_bittorrent /usr/share/zsh/functions/Completion/Unix/_bogofilter /usr/share/zsh/functions/Completion/Unix/_bpf_filters /usr/share/zsh/functions/Completion/Unix/_bpython /usr/share/zsh/functions/Completion/Unix/_bzip2 /usr/share/zsh/functions/Completion/Unix/_bzr /usr/share/zsh/functions/Completion/Unix/_cabal /usr/share/zsh/functions/Completion/Unix/_cal /usr/share/zsh/functions/Completion/Unix/_calendar /usr/share/zsh/functions/Completion/Unix/_canonical_paths /usr/share/zsh/functions/Completion/Unix/_cat /usr/share/zsh/functions/Completion/Unix/_ccal /usr/share/zsh/functions/Completion/Unix/_cdcd /usr/share/zsh/functions/Completion/Unix/_cdrdao /usr/share/zsh/functions/Completion/Unix/_cdrecord /usr/share/zsh/functions/Completion/Unix/_chkconfig /usr/share/zsh/functions/Completion/Unix/_chmod /usr/share/zsh/functions/Completion/Unix/_chown /usr/share/zsh/functions/Completion/Unix/_chroot /usr/share/zsh/functions/Completion/Unix/_chsh /usr/share/zsh/functions/Completion/Unix/_cksum /usr/share/zsh/functions/Completion/Unix/_clay /usr/share/zsh/functions/Completion/Unix/_cmdambivalent /usr/share/zsh/functions/Completion/Unix/_cmdstring /usr/share/zsh/functions/Completion/Unix/_cmp /usr/share/zsh/functions/Completion/Unix/_column /usr/share/zsh/functions/Completion/Unix/_comm /usr/share/zsh/functions/Completion/Unix/_composer /usr/share/zsh/functions/Completion/Unix/_compress /usr/share/zsh/functions/Completion/Unix/_configure /usr/share/zsh/functions/Completion/Unix/_cowsay /usr/share/zsh/functions/Completion/Unix/_cp /usr/share/zsh/functions/Completion/Unix/_cpio /usr/share/zsh/functions/Completion/Unix/_cplay /usr/share/zsh/functions/Completion/Unix/_crontab /usr/share/zsh/functions/Completion/Unix/_cscope /usr/share/zsh/functions/Completion/Unix/_csplit /usr/share/zsh/functions/Completion/Unix/_cssh /usr/share/zsh/functions/Completion/Unix/_ctags /usr/share/zsh/functions/Completion/Unix/_ctags_tags /usr/share/zsh/functions/Completion/Unix/_curl /usr/share/zsh/functions/Completion/Unix/_cut /usr/share/zsh/functions/Completion/Unix/_cvs /usr/share/zsh/functions/Completion/Unix/_darcs /usr/share/zsh/functions/Completion/Unix/_date /usr/share/zsh/functions/Completion/Unix/_date_formats /usr/share/zsh/functions/Completion/Unix/_dates /usr/share/zsh/functions/Completion/Unix/_dbus /usr/share/zsh/functions/Completion/Unix/_dconf /usr/share/zsh/functions/Completion/Unix/_dd /usr/share/zsh/functions/Completion/Unix/_devtodo /usr/share/zsh/functions/Completion/Unix/_df /usr/share/zsh/functions/Completion/Unix/_dhclient /usr/share/zsh/functions/Completion/Unix/_dict /usr/share/zsh/functions/Completion/Unix/_dict_words /usr/share/zsh/functions/Completion/Unix/_diff /usr/share/zsh/functions/Completion/Unix/_diff3 /usr/share/zsh/functions/Completion/Unix/_diff_options /usr/share/zsh/functions/Completion/Unix/_diffstat /usr/share/zsh/functions/Completion/Unix/_dig /usr/share/zsh/functions/Completion/Unix/_dir_list /usr/share/zsh/functions/Completion/Unix/_directories /usr/share/zsh/functions/Completion/Unix/_django /usr/share/zsh/functions/Completion/Unix/_dmesg /usr/share/zsh/functions/Completion/Unix/_dmidecode /usr/share/zsh/functions/Completion/Unix/_dns_types /usr/share/zsh/functions/Completion/Unix/_doas /usr/share/zsh/functions/Completion/Unix/_domains /usr/share/zsh/functions/Completion/Unix/_dos2unix /usr/share/zsh/functions/Completion/Unix/_drill /usr/share/zsh/functions/Completion/Unix/_dropbox /usr/share/zsh/functions/Completion/Unix/_dsh /usr/share/zsh/functions/Completion/Unix/_dtruss /usr/share/zsh/functions/Completion/Unix/_du /usr/share/zsh/functions/Completion/Unix/_dvi /usr/share/zsh/functions/Completion/Unix/_ecasound /usr/share/zsh/functions/Completion/Unix/_ed /usr/share/zsh/functions/Completion/Unix/_elfdump /usr/share/zsh/functions/Completion/Unix/_elinks /usr/share/zsh/functions/Completion/Unix/_email_addresses /usr/share/zsh/functions/Completion/Unix/_enscript /usr/share/zsh/functions/Completion/Unix/_entr /usr/share/zsh/functions/Completion/Unix/_env /usr/share/zsh/functions/Completion/Unix/_espeak /usr/share/zsh/functions/Completion/Unix/_etags /usr/share/zsh/functions/Completion/Unix/_fakeroot /usr/share/zsh/functions/Completion/Unix/_feh /usr/share/zsh/functions/Completion/Unix/_fetchmail /usr/share/zsh/functions/Completion/Unix/_ffmpeg /usr/share/zsh/functions/Completion/Unix/_figlet /usr/share/zsh/functions/Completion/Unix/_file_modes /usr/share/zsh/functions/Completion/Unix/_file_systems /usr/share/zsh/functions/Completion/Unix/_files /usr/share/zsh/functions/Completion/Unix/_find /usr/share/zsh/functions/Completion/Unix/_find_net_interfaces /usr/share/zsh/functions/Completion/Unix/_finger /usr/share/zsh/functions/Completion/Unix/_flac /usr/share/zsh/functions/Completion/Unix/_flex /usr/share/zsh/functions/Completion/Unix/_fmt /usr/share/zsh/functions/Completion/Unix/_fold /usr/share/zsh/functions/Completion/Unix/_fortune /usr/share/zsh/functions/Completion/Unix/_fsh /usr/share/zsh/functions/Completion/Unix/_fuser /usr/share/zsh/functions/Completion/Unix/_gcc /usr/share/zsh/functions/Completion/Unix/_gcore /usr/share/zsh/functions/Completion/Unix/_gdb /usr/share/zsh/functions/Completion/Unix/_gem /usr/share/zsh/functions/Completion/Unix/_genisoimage /usr/share/zsh/functions/Completion/Unix/_getconf /usr/share/zsh/functions/Completion/Unix/_getent /usr/share/zsh/functions/Completion/Unix/_getfacl /usr/share/zsh/functions/Completion/Unix/_getmail /usr/share/zsh/functions/Completion/Unix/_getopt /usr/share/zsh/functions/Completion/Unix/_ghostscript /usr/share/zsh/functions/Completion/Unix/_git /usr/share/zsh/functions/Completion/Unix/_global /usr/share/zsh/functions/Completion/Unix/_global_tags /usr/share/zsh/functions/Completion/Unix/_gnu_generic /usr/share/zsh/functions/Completion/Unix/_gnupod /usr/share/zsh/functions/Completion/Unix/_gnutls /usr/share/zsh/functions/Completion/Unix/_go /usr/share/zsh/functions/Completion/Unix/_gpg /usr/share/zsh/functions/Completion/Unix/_gphoto2 /usr/share/zsh/functions/Completion/Unix/_gprof /usr/share/zsh/functions/Completion/Unix/_gradle /usr/share/zsh/functions/Completion/Unix/_graphicsmagick /usr/share/zsh/functions/Completion/Unix/_grep /usr/share/zsh/functions/Completion/Unix/_groff /usr/share/zsh/functions/Completion/Unix/_groups /usr/share/zsh/functions/Completion/Unix/_growisofs /usr/share/zsh/functions/Completion/Unix/_gsettings /usr/share/zsh/functions/Completion/Unix/_guilt /usr/share/zsh/functions/Completion/Unix/_gzip /usr/share/zsh/functions/Completion/Unix/_have_glob_qual /usr/share/zsh/functions/Completion/Unix/_head /usr/share/zsh/functions/Completion/Unix/_hexdump /usr/share/zsh/functions/Completion/Unix/_host /usr/share/zsh/functions/Completion/Unix/_hostname /usr/share/zsh/functions/Completion/Unix/_hosts /usr/share/zsh/functions/Completion/Unix/_iconv /usr/share/zsh/functions/Completion/Unix/_id /usr/share/zsh/functions/Completion/Unix/_ifconfig /usr/share/zsh/functions/Completion/Unix/_iftop /usr/share/zsh/functions/Completion/Unix/_imagemagick /usr/share/zsh/functions/Completion/Unix/_init_d /usr/share/zsh/functions/Completion/Unix/_initctl /usr/share/zsh/functions/Completion/Unix/_install /usr/share/zsh/functions/Completion/Unix/_iostat /usr/share/zsh/functions/Completion/Unix/_ip /usr/share/zsh/functions/Completion/Unix/_ipsec /usr/share/zsh/functions/Completion/Unix/_irssi /usr/share/zsh/functions/Completion/Unix/_ispell /usr/share/zsh/functions/Completion/Unix/_java /usr/share/zsh/functions/Completion/Unix/_java_class /usr/share/zsh/functions/Completion/Unix/_joe /usr/share/zsh/functions/Completion/Unix/_join /usr/share/zsh/functions/Completion/Unix/_jq /usr/share/zsh/functions/Completion/Unix/_killall /usr/share/zsh/functions/Completion/Unix/_knock /usr/share/zsh/functions/Completion/Unix/_kvno /usr/share/zsh/functions/Completion/Unix/_last /usr/share/zsh/functions/Completion/Unix/_ld_debug /usr/share/zsh/functions/Completion/Unix/_ldconfig /usr/share/zsh/functions/Completion/Unix/_ldd /usr/share/zsh/functions/Completion/Unix/_less /usr/share/zsh/functions/Completion/Unix/_lha /usr/share/zsh/functions/Completion/Unix/_libvirt /usr/share/zsh/functions/Completion/Unix/_links /usr/share/zsh/functions/Completion/Unix/_list_files /usr/share/zsh/functions/Completion/Unix/_lldb /usr/share/zsh/functions/Completion/Unix/_ln /usr/share/zsh/functions/Completion/Unix/_loadkeys /usr/share/zsh/functions/Completion/Unix/_locale /usr/share/zsh/functions/Completion/Unix/_localedef /usr/share/zsh/functions/Completion/Unix/_locales /usr/share/zsh/functions/Completion/Unix/_locate /usr/share/zsh/functions/Completion/Unix/_logger /usr/share/zsh/functions/Completion/Unix/_look /usr/share/zsh/functions/Completion/Unix/_lp /usr/share/zsh/functions/Completion/Unix/_ls /usr/share/zsh/functions/Completion/Unix/_lsof /usr/share/zsh/functions/Completion/Unix/_lua /usr/share/zsh/functions/Completion/Unix/_luarocks /usr/share/zsh/functions/Completion/Unix/_lynx /usr/share/zsh/functions/Completion/Unix/_lz4 /usr/share/zsh/functions/Completion/Unix/_lzop /usr/share/zsh/functions/Completion/Unix/_mail /usr/share/zsh/functions/Completion/Unix/_mailboxes /usr/share/zsh/functions/Completion/Unix/_make /usr/share/zsh/functions/Completion/Unix/_man /usr/share/zsh/functions/Completion/Unix/_md5sum /usr/share/zsh/functions/Completion/Unix/_mencal /usr/share/zsh/functions/Completion/Unix/_mh /usr/share/zsh/functions/Completion/Unix/_mime_types /usr/share/zsh/functions/Completion/Unix/_mkdir /usr/share/zsh/functions/Completion/Unix/_mkfifo /usr/share/zsh/functions/Completion/Unix/_mknod /usr/share/zsh/functions/Completion/Unix/_mktemp /usr/share/zsh/functions/Completion/Unix/_module /usr/share/zsh/functions/Completion/Unix/_monotone /usr/share/zsh/functions/Completion/Unix/_moosic /usr/share/zsh/functions/Completion/Unix/_mosh /usr/share/zsh/functions/Completion/Unix/_mount /usr/share/zsh/functions/Completion/Unix/_mpc /usr/share/zsh/functions/Completion/Unix/_mt /usr/share/zsh/functions/Completion/Unix/_mtools /usr/share/zsh/functions/Completion/Unix/_mtr /usr/share/zsh/functions/Completion/Unix/_mutt /usr/share/zsh/functions/Completion/Unix/_mv /usr/share/zsh/functions/Completion/Unix/_my_accounts /usr/share/zsh/functions/Completion/Unix/_myrepos /usr/share/zsh/functions/Completion/Unix/_mysql_utils /usr/share/zsh/functions/Completion/Unix/_mysqldiff /usr/share/zsh/functions/Completion/Unix/_ncftp /usr/share/zsh/functions/Completion/Unix/_net_interfaces /usr/share/zsh/functions/Completion/Unix/_netcat /usr/share/zsh/functions/Completion/Unix/_netstat /usr/share/zsh/functions/Completion/Unix/_newsgroups /usr/share/zsh/functions/Completion/Unix/_nginx /usr/share/zsh/functions/Completion/Unix/_ngrep /usr/share/zsh/functions/Completion/Unix/_nice /usr/share/zsh/functions/Completion/Unix/_nkf /usr/share/zsh/functions/Completion/Unix/_nl /usr/share/zsh/functions/Completion/Unix/_nm /usr/share/zsh/functions/Completion/Unix/_nmap /usr/share/zsh/functions/Completion/Unix/_npm /usr/share/zsh/functions/Completion/Unix/_nslookup /usr/share/zsh/functions/Completion/Unix/_numfmt /usr/share/zsh/functions/Completion/Unix/_objdump /usr/share/zsh/functions/Completion/Unix/_object_files /usr/share/zsh/functions/Completion/Unix/_od /usr/share/zsh/functions/Completion/Unix/_openstack /usr/share/zsh/functions/Completion/Unix/_opustools /usr/share/zsh/functions/Completion/Unix/_other_accounts /usr/share/zsh/functions/Completion/Unix/_pack /usr/share/zsh/functions/Completion/Unix/_pandoc /usr/share/zsh/functions/Completion/Unix/_paste /usr/share/zsh/functions/Completion/Unix/_patch /usr/share/zsh/functions/Completion/Unix/_patchutils /usr/share/zsh/functions/Completion/Unix/_path_commands /usr/share/zsh/functions/Completion/Unix/_path_files /usr/share/zsh/functions/Completion/Unix/_pax /usr/share/zsh/functions/Completion/Unix/_pbm /usr/share/zsh/functions/Completion/Unix/_pdf /usr/share/zsh/functions/Completion/Unix/_perforce /usr/share/zsh/functions/Completion/Unix/_perl /usr/share/zsh/functions/Completion/Unix/_perl_basepods /usr/share/zsh/functions/Completion/Unix/_perl_modules /usr/share/zsh/functions/Completion/Unix/_perldoc /usr/share/zsh/functions/Completion/Unix/_pgids /usr/share/zsh/functions/Completion/Unix/_pgrep /usr/share/zsh/functions/Completion/Unix/_php /usr/share/zsh/functions/Completion/Unix/_picocom /usr/share/zsh/functions/Completion/Unix/_pids /usr/share/zsh/functions/Completion/Unix/_pine /usr/share/zsh/functions/Completion/Unix/_ping /usr/share/zsh/functions/Completion/Unix/_pip /usr/share/zsh/functions/Completion/Unix/_pkg-config /usr/share/zsh/functions/Completion/Unix/_pkg_instance /usr/share/zsh/functions/Completion/Unix/_pkgadd /usr/share/zsh/functions/Completion/Unix/_pkginfo /usr/share/zsh/functions/Completion/Unix/_pkgrm /usr/share/zsh/functions/Completion/Unix/_pon /usr/share/zsh/functions/Completion/Unix/_ports /usr/share/zsh/functions/Completion/Unix/_postfix /usr/share/zsh/functions/Completion/Unix/_postgresql /usr/share/zsh/functions/Completion/Unix/_postscript /usr/share/zsh/functions/Completion/Unix/_pr /usr/share/zsh/functions/Completion/Unix/_printenv /usr/share/zsh/functions/Completion/Unix/_printers /usr/share/zsh/functions/Completion/Unix/_process_names /usr/share/zsh/functions/Completion/Unix/_prove /usr/share/zsh/functions/Completion/Unix/_ps /usr/share/zsh/functions/Completion/Unix/_pspdf /usr/share/zsh/functions/Completion/Unix/_psutils /usr/share/zsh/functions/Completion/Unix/_ptx /usr/share/zsh/functions/Completion/Unix/_pump /usr/share/zsh/functions/Completion/Unix/_pv /usr/share/zsh/functions/Completion/Unix/_pwgen /usr/share/zsh/functions/Completion/Unix/_pydoc /usr/share/zsh/functions/Completion/Unix/_python /usr/share/zsh/functions/Completion/Unix/_python_modules /usr/share/zsh/functions/Completion/Unix/_qemu /usr/share/zsh/functions/Completion/Unix/_quilt /usr/share/zsh/functions/Completion/Unix/_rake /usr/share/zsh/functions/Completion/Unix/_ranlib /usr/share/zsh/functions/Completion/Unix/_rar /usr/share/zsh/functions/Completion/Unix/_rclone /usr/share/zsh/functions/Completion/Unix/_rcs /usr/share/zsh/functions/Completion/Unix/_readelf /usr/share/zsh/functions/Completion/Unix/_readlink /usr/share/zsh/functions/Completion/Unix/_remote_files /usr/share/zsh/functions/Completion/Unix/_renice /usr/share/zsh/functions/Completion/Unix/_ri /usr/share/zsh/functions/Completion/Unix/_rlogin /usr/share/zsh/functions/Completion/Unix/_rm /usr/share/zsh/functions/Completion/Unix/_rmdir /usr/share/zsh/functions/Completion/Unix/_route /usr/share/zsh/functions/Completion/Unix/_rrdtool /usr/share/zsh/functions/Completion/Unix/_rsync /usr/share/zsh/functions/Completion/Unix/_rubber /usr/share/zsh/functions/Completion/Unix/_ruby /usr/share/zsh/functions/Completion/Unix/_runit /usr/share/zsh/functions/Completion/Unix/_samba /usr/share/zsh/functions/Completion/Unix/_sccs /usr/share/zsh/functions/Completion/Unix/_scons /usr/share/zsh/functions/Completion/Unix/_screen /usr/share/zsh/functions/Completion/Unix/_script /usr/share/zsh/functions/Completion/Unix/_seafile /usr/share/zsh/functions/Completion/Unix/_sed /usr/share/zsh/functions/Completion/Unix/_seq /usr/share/zsh/functions/Completion/Unix/_service /usr/share/zsh/functions/Completion/Unix/_services /usr/share/zsh/functions/Completion/Unix/_setfacl /usr/share/zsh/functions/Completion/Unix/_sh /usr/share/zsh/functions/Completion/Unix/_shasum /usr/share/zsh/functions/Completion/Unix/_showmount /usr/share/zsh/functions/Completion/Unix/_shred /usr/share/zsh/functions/Completion/Unix/_shuf /usr/share/zsh/functions/Completion/Unix/_shutdown /usr/share/zsh/functions/Completion/Unix/_signals /usr/share/zsh/functions/Completion/Unix/_sisu /usr/share/zsh/functions/Completion/Unix/_slrn /usr/share/zsh/functions/Completion/Unix/_smartmontools /usr/share/zsh/functions/Completion/Unix/_socket /usr/share/zsh/functions/Completion/Unix/_sort /usr/share/zsh/functions/Completion/Unix/_spamassassin /usr/share/zsh/functions/Completion/Unix/_split /usr/share/zsh/functions/Completion/Unix/_sqlite /usr/share/zsh/functions/Completion/Unix/_sqsh /usr/share/zsh/functions/Completion/Unix/_ssh /usr/share/zsh/functions/Completion/Unix/_ssh_hosts /usr/share/zsh/functions/Completion/Unix/_stat /usr/share/zsh/functions/Completion/Unix/_stdbuf /usr/share/zsh/functions/Completion/Unix/_stgit /usr/share/zsh/functions/Completion/Unix/_stow /usr/share/zsh/functions/Completion/Unix/_strings /usr/share/zsh/functions/Completion/Unix/_strip /usr/share/zsh/functions/Completion/Unix/_stty /usr/share/zsh/functions/Completion/Unix/_su /usr/share/zsh/functions/Completion/Unix/_subversion /usr/share/zsh/functions/Completion/Unix/_sudo /usr/share/zsh/functions/Completion/Unix/_surfraw /usr/share/zsh/functions/Completion/Unix/_swaks /usr/share/zsh/functions/Completion/Unix/_swanctl /usr/share/zsh/functions/Completion/Unix/_swift /usr/share/zsh/functions/Completion/Unix/_sys_calls /usr/share/zsh/functions/Completion/Unix/_sysctl /usr/share/zsh/functions/Completion/Unix/_tac /usr/share/zsh/functions/Completion/Unix/_tail /usr/share/zsh/functions/Completion/Unix/_tar /usr/share/zsh/functions/Completion/Unix/_tar_archive /usr/share/zsh/functions/Completion/Unix/_tardy /usr/share/zsh/functions/Completion/Unix/_tcpdump /usr/share/zsh/functions/Completion/Unix/_tcptraceroute /usr/share/zsh/functions/Completion/Unix/_tee /usr/share/zsh/functions/Completion/Unix/_telnet /usr/share/zsh/functions/Completion/Unix/_terminals /usr/share/zsh/functions/Completion/Unix/_tex /usr/share/zsh/functions/Completion/Unix/_texi /usr/share/zsh/functions/Completion/Unix/_texinfo /usr/share/zsh/functions/Completion/Unix/_tidy /usr/share/zsh/functions/Completion/Unix/_tiff /usr/share/zsh/functions/Completion/Unix/_tilde_files /usr/share/zsh/functions/Completion/Unix/_time_zone /usr/share/zsh/functions/Completion/Unix/_timeout /usr/share/zsh/functions/Completion/Unix/_tin /usr/share/zsh/functions/Completion/Unix/_tla /usr/share/zsh/functions/Completion/Unix/_tmux /usr/share/zsh/functions/Completion/Unix/_todo.sh /usr/share/zsh/functions/Completion/Unix/_toilet /usr/share/zsh/functions/Completion/Unix/_top /usr/share/zsh/functions/Completion/Unix/_topgit /usr/share/zsh/functions/Completion/Unix/_totd /usr/share/zsh/functions/Completion/Unix/_touch /usr/share/zsh/functions/Completion/Unix/_tput /usr/share/zsh/functions/Completion/Unix/_tr /usr/share/zsh/functions/Completion/Unix/_transmission /usr/share/zsh/functions/Completion/Unix/_tree /usr/share/zsh/functions/Completion/Unix/_truncate /usr/share/zsh/functions/Completion/Unix/_truss /usr/share/zsh/functions/Completion/Unix/_tty /usr/share/zsh/functions/Completion/Unix/_ttys /usr/share/zsh/functions/Completion/Unix/_twidge /usr/share/zsh/functions/Completion/Unix/_twisted /usr/share/zsh/functions/Completion/Unix/_umountable /usr/share/zsh/functions/Completion/Unix/_unace /usr/share/zsh/functions/Completion/Unix/_uname /usr/share/zsh/functions/Completion/Unix/_unexpand /usr/share/zsh/functions/Completion/Unix/_uniq /usr/share/zsh/functions/Completion/Unix/_unison /usr/share/zsh/functions/Completion/Unix/_units /usr/share/zsh/functions/Completion/Unix/_uptime /usr/share/zsh/functions/Completion/Unix/_urls /usr/share/zsh/functions/Completion/Unix/_user_admin /usr/share/zsh/functions/Completion/Unix/_user_at_host /usr/share/zsh/functions/Completion/Unix/_users /usr/share/zsh/functions/Completion/Unix/_users_on /usr/share/zsh/functions/Completion/Unix/_vi /usr/share/zsh/functions/Completion/Unix/_vim /usr/share/zsh/functions/Completion/Unix/_visudo /usr/share/zsh/functions/Completion/Unix/_vmstat /usr/share/zsh/functions/Completion/Unix/_vorbis /usr/share/zsh/functions/Completion/Unix/_vpnc /usr/share/zsh/functions/Completion/Unix/_w /usr/share/zsh/functions/Completion/Unix/_w3m /usr/share/zsh/functions/Completion/Unix/_watch /usr/share/zsh/functions/Completion/Unix/_wc /usr/share/zsh/functions/Completion/Unix/_webbrowser /usr/share/zsh/functions/Completion/Unix/_wget /usr/share/zsh/functions/Completion/Unix/_whereis /usr/share/zsh/functions/Completion/Unix/_who /usr/share/zsh/functions/Completion/Unix/_whois /usr/share/zsh/functions/Completion/Unix/_wiggle /usr/share/zsh/functions/Completion/Unix/_xargs /usr/share/zsh/functions/Completion/Unix/_xmlsoft /usr/share/zsh/functions/Completion/Unix/_xmlstarlet /usr/share/zsh/functions/Completion/Unix/_xmms2 /usr/share/zsh/functions/Completion/Unix/_xxd /usr/share/zsh/functions/Completion/Unix/_xz /usr/share/zsh/functions/Completion/Unix/_yafc /usr/share/zsh/functions/Completion/Unix/_yodl /usr/share/zsh/functions/Completion/Unix/_yp /usr/share/zsh/functions/Completion/Unix/_zcat /usr/share/zsh/functions/Completion/Unix/_zdump /usr/share/zsh/functions/Completion/Unix/_zfs /usr/share/zsh/functions/Completion/Unix/_zfs_dataset /usr/share/zsh/functions/Completion/Unix/_zfs_pool /usr/share/zsh/functions/Completion/Unix/_zip /usr/share/zsh/functions/Completion/Unix/_zsh /usr/share/zsh/functions/Completion/X /usr/share/zsh/functions/Completion/X/_acroread /usr/share/zsh/functions/Completion/X/_code /usr/share/zsh/functions/Completion/X/_dcop /usr/share/zsh/functions/Completion/X/_eog /usr/share/zsh/functions/Completion/X/_evince /usr/share/zsh/functions/Completion/X/_geany /usr/share/zsh/functions/Completion/X/_gnome-gv /usr/share/zsh/functions/Completion/X/_gqview /usr/share/zsh/functions/Completion/X/_gv /usr/share/zsh/functions/Completion/X/_kdeconnect /usr/share/zsh/functions/Completion/X/_kfmclient /usr/share/zsh/functions/Completion/X/_matlab /usr/share/zsh/functions/Completion/X/_mozilla /usr/share/zsh/functions/Completion/X/_mplayer /usr/share/zsh/functions/Completion/X/_mupdf /usr/share/zsh/functions/Completion/X/_nautilus /usr/share/zsh/functions/Completion/X/_nedit /usr/share/zsh/functions/Completion/X/_netscape /usr/share/zsh/functions/Completion/X/_okular /usr/share/zsh/functions/Completion/X/_pdftk /usr/share/zsh/functions/Completion/X/_qiv /usr/share/zsh/functions/Completion/X/_rdesktop /usr/share/zsh/functions/Completion/X/_setxkbmap /usr/share/zsh/functions/Completion/X/_sublimetext /usr/share/zsh/functions/Completion/X/_urxvt /usr/share/zsh/functions/Completion/X/_vnc /usr/share/zsh/functions/Completion/X/_x_arguments /usr/share/zsh/functions/Completion/X/_x_borderwidth /usr/share/zsh/functions/Completion/X/_x_color /usr/share/zsh/functions/Completion/X/_x_colormapid /usr/share/zsh/functions/Completion/X/_x_cursor /usr/share/zsh/functions/Completion/X/_x_display /usr/share/zsh/functions/Completion/X/_x_extension /usr/share/zsh/functions/Completion/X/_x_font /usr/share/zsh/functions/Completion/X/_x_geometry /usr/share/zsh/functions/Completion/X/_x_keysym /usr/share/zsh/functions/Completion/X/_x_locale /usr/share/zsh/functions/Completion/X/_x_modifier /usr/share/zsh/functions/Completion/X/_x_name /usr/share/zsh/functions/Completion/X/_x_resource /usr/share/zsh/functions/Completion/X/_x_selection_timeout /usr/share/zsh/functions/Completion/X/_x_title /usr/share/zsh/functions/Completion/X/_x_utils /usr/share/zsh/functions/Completion/X/_x_visual /usr/share/zsh/functions/Completion/X/_x_window /usr/share/zsh/functions/Completion/X/_xauth /usr/share/zsh/functions/Completion/X/_xautolock /usr/share/zsh/functions/Completion/X/_xclip /usr/share/zsh/functions/Completion/X/_xdvi /usr/share/zsh/functions/Completion/X/_xfig /usr/share/zsh/functions/Completion/X/_xft_fonts /usr/share/zsh/functions/Completion/X/_xinput /usr/share/zsh/functions/Completion/X/_xloadimage /usr/share/zsh/functions/Completion/X/_xmodmap /usr/share/zsh/functions/Completion/X/_xournal /usr/share/zsh/functions/Completion/X/_xpdf /usr/share/zsh/functions/Completion/X/_xrandr /usr/share/zsh/functions/Completion/X/_xscreensaver /usr/share/zsh/functions/Completion/X/_xset /usr/share/zsh/functions/Completion/X/_xt_arguments /usr/share/zsh/functions/Completion/X/_xt_session_id /usr/share/zsh/functions/Completion/X/_xterm /usr/share/zsh/functions/Completion/X/_xv /usr/share/zsh/functions/Completion/X/_xwit /usr/share/zsh/functions/Completion/X/_zeal /usr/share/zsh/functions/Completion/Zsh /usr/share/zsh/functions/Completion/Zsh/__arguments /usr/share/zsh/functions/Completion/Zsh/_add-zle-hook-widget /usr/share/zsh/functions/Completion/Zsh/_add-zsh-hook /usr/share/zsh/functions/Completion/Zsh/_alias /usr/share/zsh/functions/Completion/Zsh/_aliases /usr/share/zsh/functions/Completion/Zsh/_arrays /usr/share/zsh/functions/Completion/Zsh/_assign /usr/share/zsh/functions/Completion/Zsh/_autocd /usr/share/zsh/functions/Completion/Zsh/_bindkey /usr/share/zsh/functions/Completion/Zsh/_brace_parameter /usr/share/zsh/functions/Completion/Zsh/_builtin /usr/share/zsh/functions/Completion/Zsh/_cd /usr/share/zsh/functions/Completion/Zsh/_command /usr/share/zsh/functions/Completion/Zsh/_command_names /usr/share/zsh/functions/Completion/Zsh/_compadd /usr/share/zsh/functions/Completion/Zsh/_compdef /usr/share/zsh/functions/Completion/Zsh/_completers /usr/share/zsh/functions/Completion/Zsh/_condition /usr/share/zsh/functions/Completion/Zsh/_default /usr/share/zsh/functions/Completion/Zsh/_delimiters /usr/share/zsh/functions/Completion/Zsh/_directory_stack /usr/share/zsh/functions/Completion/Zsh/_dirs /usr/share/zsh/functions/Completion/Zsh/_disable /usr/share/zsh/functions/Completion/Zsh/_dynamic_directory_name /usr/share/zsh/functions/Completion/Zsh/_echotc /usr/share/zsh/functions/Completion/Zsh/_echoti /usr/share/zsh/functions/Completion/Zsh/_emulate /usr/share/zsh/functions/Completion/Zsh/_enable /usr/share/zsh/functions/Completion/Zsh/_equal /usr/share/zsh/functions/Completion/Zsh/_exec /usr/share/zsh/functions/Completion/Zsh/_fc /usr/share/zsh/functions/Completion/Zsh/_file_descriptors /usr/share/zsh/functions/Completion/Zsh/_first /usr/share/zsh/functions/Completion/Zsh/_functions /usr/share/zsh/functions/Completion/Zsh/_globflags /usr/share/zsh/functions/Completion/Zsh/_globqual_delims /usr/share/zsh/functions/Completion/Zsh/_globquals /usr/share/zsh/functions/Completion/Zsh/_hash /usr/share/zsh/functions/Completion/Zsh/_history_modifiers /usr/share/zsh/functions/Completion/Zsh/_in_vared /usr/share/zsh/functions/Completion/Zsh/_jobs /usr/share/zsh/functions/Completion/Zsh/_jobs_bg /usr/share/zsh/functions/Completion/Zsh/_jobs_builtin /usr/share/zsh/functions/Completion/Zsh/_jobs_fg /usr/share/zsh/functions/Completion/Zsh/_kill /usr/share/zsh/functions/Completion/Zsh/_limit /usr/share/zsh/functions/Completion/Zsh/_limits /usr/share/zsh/functions/Completion/Zsh/_math /usr/share/zsh/functions/Completion/Zsh/_math_params /usr/share/zsh/functions/Completion/Zsh/_mere /usr/share/zsh/functions/Completion/Zsh/_module_math_func /usr/share/zsh/functions/Completion/Zsh/_options /usr/share/zsh/functions/Completion/Zsh/_options_set /usr/share/zsh/functions/Completion/Zsh/_options_unset /usr/share/zsh/functions/Completion/Zsh/_parameter /usr/share/zsh/functions/Completion/Zsh/_parameters /usr/share/zsh/functions/Completion/Zsh/_precommand /usr/share/zsh/functions/Completion/Zsh/_print /usr/share/zsh/functions/Completion/Zsh/_prompt /usr/share/zsh/functions/Completion/Zsh/_ps1234 /usr/share/zsh/functions/Completion/Zsh/_read /usr/share/zsh/functions/Completion/Zsh/_redirect /usr/share/zsh/functions/Completion/Zsh/_run-help /usr/share/zsh/functions/Completion/Zsh/_sched /usr/share/zsh/functions/Completion/Zsh/_set /usr/share/zsh/functions/Completion/Zsh/_setopt /usr/share/zsh/functions/Completion/Zsh/_source /usr/share/zsh/functions/Completion/Zsh/_strftime /usr/share/zsh/functions/Completion/Zsh/_subscript /usr/share/zsh/functions/Completion/Zsh/_suffix_alias_files /usr/share/zsh/functions/Completion/Zsh/_tcpsys /usr/share/zsh/functions/Completion/Zsh/_tilde /usr/share/zsh/functions/Completion/Zsh/_trap /usr/share/zsh/functions/Completion/Zsh/_ttyctl /usr/share/zsh/functions/Completion/Zsh/_typeset /usr/share/zsh/functions/Completion/Zsh/_ulimit /usr/share/zsh/functions/Completion/Zsh/_unhash /usr/share/zsh/functions/Completion/Zsh/_user_math_func /usr/share/zsh/functions/Completion/Zsh/_value /usr/share/zsh/functions/Completion/Zsh/_vared /usr/share/zsh/functions/Completion/Zsh/_vars /usr/share/zsh/functions/Completion/Zsh/_vcs_info /usr/share/zsh/functions/Completion/Zsh/_vcs_info_hooks /usr/share/zsh/functions/Completion/Zsh/_wait /usr/share/zsh/functions/Completion/Zsh/_which /usr/share/zsh/functions/Completion/Zsh/_widgets /usr/share/zsh/functions/Completion/Zsh/_zargs /usr/share/zsh/functions/Completion/Zsh/_zattr /usr/share/zsh/functions/Completion/Zsh/_zcalc /usr/share/zsh/functions/Completion/Zsh/_zcalc_line /usr/share/zsh/functions/Completion/Zsh/_zcompile /usr/share/zsh/functions/Completion/Zsh/_zed /usr/share/zsh/functions/Completion/Zsh/_zftp /usr/share/zsh/functions/Completion/Zsh/_zle /usr/share/zsh/functions/Completion/Zsh/_zmodload /usr/share/zsh/functions/Completion/Zsh/_zmv /usr/share/zsh/functions/Completion/Zsh/_zparseopts /usr/share/zsh/functions/Completion/Zsh/_zpty /usr/share/zsh/functions/Completion/Zsh/_zsh-mime-handler /usr/share/zsh/functions/Completion/Zsh/_zsocket /usr/share/zsh/functions/Completion/Zsh/_zstyle /usr/share/zsh/functions/Completion/Zsh/_ztodo /usr/share/zsh/functions/Completion/bashcompinit /usr/share/zsh/functions/Completion/compaudit /usr/share/zsh/functions/Completion/compdump /usr/share/zsh/functions/Completion/compinit /usr/share/zsh/functions/Completion/compinstall /usr/share/zsh/functions/Completion/openSUSE /usr/share/zsh/functions/Completion/openSUSE/_SUSEconfig /usr/share/zsh/functions/Completion/openSUSE/_hwinfo /usr/share/zsh/functions/Completion/openSUSE/_osc /usr/share/zsh/functions/Completion/openSUSE/_rpm /usr/share/zsh/functions/Completion/openSUSE/_yast /usr/share/zsh/functions/Completion/openSUSE/_zypper /usr/share/zsh/functions/Exceptions /usr/share/zsh/functions/Exceptions/catch /usr/share/zsh/functions/Exceptions/throw /usr/share/zsh/functions/MIME /usr/share/zsh/functions/MIME/pick-web-browser /usr/share/zsh/functions/MIME/zsh-mime-contexts /usr/share/zsh/functions/MIME/zsh-mime-handler /usr/share/zsh/functions/MIME/zsh-mime-setup /usr/share/zsh/functions/Math /usr/share/zsh/functions/Math/zmathfunc /usr/share/zsh/functions/Misc /usr/share/zsh/functions/Misc/add-zle-hook-widget /usr/share/zsh/functions/Misc/add-zsh-hook /usr/share/zsh/functions/Misc/allopt /usr/share/zsh/functions/Misc/checkmail /usr/share/zsh/functions/Misc/colors /usr/share/zsh/functions/Misc/getjobs /usr/share/zsh/functions/Misc/harden /usr/share/zsh/functions/Misc/is-at-least /usr/share/zsh/functions/Misc/mere /usr/share/zsh/functions/Misc/nslookup /usr/share/zsh/functions/Misc/promptnl /usr/share/zsh/functions/Misc/regexp-replace /usr/share/zsh/functions/Misc/relative /usr/share/zsh/functions/Misc/run-help /usr/share/zsh/functions/Misc/run-help-btrfs /usr/share/zsh/functions/Misc/run-help-git /usr/share/zsh/functions/Misc/run-help-ip /usr/share/zsh/functions/Misc/run-help-openssl /usr/share/zsh/functions/Misc/run-help-p4 /usr/share/zsh/functions/Misc/run-help-sudo /usr/share/zsh/functions/Misc/run-help-svk /usr/share/zsh/functions/Misc/run-help-svn /usr/share/zsh/functions/Misc/sticky-note /usr/share/zsh/functions/Misc/tetris /usr/share/zsh/functions/Misc/tetriscurses /usr/share/zsh/functions/Misc/xtermctl /usr/share/zsh/functions/Misc/zargs /usr/share/zsh/functions/Misc/zcalc /usr/share/zsh/functions/Misc/zed /usr/share/zsh/functions/Misc/zkbd /usr/share/zsh/functions/Misc/zmathfuncdef /usr/share/zsh/functions/Misc/zmv /usr/share/zsh/functions/Misc/zrecompile /usr/share/zsh/functions/Misc/zstyle+ /usr/share/zsh/functions/Misc/ztodo /usr/share/zsh/functions/Newuser /usr/share/zsh/functions/Newuser/zsh-newuser-install /usr/share/zsh/functions/Prompts /usr/share/zsh/functions/Prompts/prompt_adam1_setup /usr/share/zsh/functions/Prompts/prompt_adam2_setup /usr/share/zsh/functions/Prompts/prompt_bart_setup /usr/share/zsh/functions/Prompts/prompt_bigfade_setup /usr/share/zsh/functions/Prompts/prompt_clint_setup /usr/share/zsh/functions/Prompts/prompt_default_setup /usr/share/zsh/functions/Prompts/prompt_elite2_setup /usr/share/zsh/functions/Prompts/prompt_elite_setup /usr/share/zsh/functions/Prompts/prompt_fade_setup /usr/share/zsh/functions/Prompts/prompt_fire_setup /usr/share/zsh/functions/Prompts/prompt_off_setup /usr/share/zsh/functions/Prompts/prompt_oliver_setup /usr/share/zsh/functions/Prompts/prompt_pws_setup /usr/share/zsh/functions/Prompts/prompt_redhat_setup /usr/share/zsh/functions/Prompts/prompt_restore_setup /usr/share/zsh/functions/Prompts/prompt_special_chars /usr/share/zsh/functions/Prompts/prompt_suse_setup /usr/share/zsh/functions/Prompts/prompt_walters_setup /usr/share/zsh/functions/Prompts/prompt_zefram_setup /usr/share/zsh/functions/Prompts/promptinit /usr/share/zsh/functions/TCP /usr/share/zsh/functions/TCP/tcp_alias /usr/share/zsh/functions/TCP/tcp_close /usr/share/zsh/functions/TCP/tcp_command /usr/share/zsh/functions/TCP/tcp_expect /usr/share/zsh/functions/TCP/tcp_fd_handler /usr/share/zsh/functions/TCP/tcp_log /usr/share/zsh/functions/TCP/tcp_open /usr/share/zsh/functions/TCP/tcp_output /usr/share/zsh/functions/TCP/tcp_point /usr/share/zsh/functions/TCP/tcp_proxy /usr/share/zsh/functions/TCP/tcp_read /usr/share/zsh/functions/TCP/tcp_rename /usr/share/zsh/functions/TCP/tcp_send /usr/share/zsh/functions/TCP/tcp_sess /usr/share/zsh/functions/TCP/tcp_shoot /usr/share/zsh/functions/TCP/tcp_spam /usr/share/zsh/functions/TCP/tcp_talk /usr/share/zsh/functions/TCP/tcp_wait /usr/share/zsh/functions/VCS_Info /usr/share/zsh/functions/VCS_Info/Backends /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_detect_bzr /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_detect_cdv /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_detect_cvs /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_detect_darcs /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_detect_fossil /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_detect_git /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_detect_hg /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_detect_mtn /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_detect_p4 /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_detect_svk /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_detect_svn /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_detect_tla /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_get_data_bzr /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_get_data_cdv /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_get_data_cvs /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_get_data_darcs /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_get_data_fossil /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_get_data_git /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_get_data_hg /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_get_data_mtn /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_get_data_p4 /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_get_data_svk /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_get_data_svn /usr/share/zsh/functions/VCS_Info/Backends/VCS_INFO_get_data_tla /usr/share/zsh/functions/VCS_Info/VCS_INFO_adjust /usr/share/zsh/functions/VCS_Info/VCS_INFO_bydir_detect /usr/share/zsh/functions/VCS_Info/VCS_INFO_check_com /usr/share/zsh/functions/VCS_Info/VCS_INFO_formats /usr/share/zsh/functions/VCS_Info/VCS_INFO_get_cmd /usr/share/zsh/functions/VCS_Info/VCS_INFO_hexdump /usr/share/zsh/functions/VCS_Info/VCS_INFO_hook /usr/share/zsh/functions/VCS_Info/VCS_INFO_maxexports /usr/share/zsh/functions/VCS_Info/VCS_INFO_nvcsformats /usr/share/zsh/functions/VCS_Info/VCS_INFO_patch2subject /usr/share/zsh/functions/VCS_Info/VCS_INFO_quilt /usr/share/zsh/functions/VCS_Info/VCS_INFO_reposub /usr/share/zsh/functions/VCS_Info/VCS_INFO_set /usr/share/zsh/functions/VCS_Info/VCS_INFO_set-branch-format /usr/share/zsh/functions/VCS_Info/VCS_INFO_set-patch-format /usr/share/zsh/functions/VCS_Info/test-repo-git-rebase-apply /usr/share/zsh/functions/VCS_Info/test-repo-git-rebase-merge /usr/share/zsh/functions/VCS_Info/vcs_info /usr/share/zsh/functions/VCS_Info/vcs_info_hookadd /usr/share/zsh/functions/VCS_Info/vcs_info_hookdel /usr/share/zsh/functions/VCS_Info/vcs_info_lastmsg /usr/share/zsh/functions/VCS_Info/vcs_info_printsys /usr/share/zsh/functions/VCS_Info/vcs_info_setsys /usr/share/zsh/functions/Zftp /usr/share/zsh/functions/Zftp/zfanon /usr/share/zsh/functions/Zftp/zfautocheck /usr/share/zsh/functions/Zftp/zfcd /usr/share/zsh/functions/Zftp/zfcd_match /usr/share/zsh/functions/Zftp/zfcget /usr/share/zsh/functions/Zftp/zfclose /usr/share/zsh/functions/Zftp/zfcput /usr/share/zsh/functions/Zftp/zfdir /usr/share/zsh/functions/Zftp/zffcache /usr/share/zsh/functions/Zftp/zfgcp /usr/share/zsh/functions/Zftp/zfget /usr/share/zsh/functions/Zftp/zfget_match /usr/share/zsh/functions/Zftp/zfgoto /usr/share/zsh/functions/Zftp/zfhere /usr/share/zsh/functions/Zftp/zfinit /usr/share/zsh/functions/Zftp/zfls /usr/share/zsh/functions/Zftp/zfmark /usr/share/zsh/functions/Zftp/zfopen /usr/share/zsh/functions/Zftp/zfparams /usr/share/zsh/functions/Zftp/zfpcp /usr/share/zsh/functions/Zftp/zfput /usr/share/zsh/functions/Zftp/zfrglob /usr/share/zsh/functions/Zftp/zfrtime /usr/share/zsh/functions/Zftp/zfsession /usr/share/zsh/functions/Zftp/zfstat /usr/share/zsh/functions/Zftp/zftp_chpwd /usr/share/zsh/functions/Zftp/zftp_progress /usr/share/zsh/functions/Zftp/zftransfer /usr/share/zsh/functions/Zftp/zftype /usr/share/zsh/functions/Zftp/zfuget /usr/share/zsh/functions/Zftp/zfuput /usr/share/zsh/functions/Zle /usr/share/zsh/functions/Zle/backward-kill-word-match /usr/share/zsh/functions/Zle/backward-word-match /usr/share/zsh/functions/Zle/bracketed-paste-magic /usr/share/zsh/functions/Zle/bracketed-paste-url-magic /usr/share/zsh/functions/Zle/capitalize-word-match /usr/share/zsh/functions/Zle/copy-earlier-word /usr/share/zsh/functions/Zle/cycle-completion-positions /usr/share/zsh/functions/Zle/define-composed-chars /usr/share/zsh/functions/Zle/delete-whole-word-match /usr/share/zsh/functions/Zle/down-case-word-match /usr/share/zsh/functions/Zle/down-line-or-beginning-search /usr/share/zsh/functions/Zle/edit-command-line /usr/share/zsh/functions/Zle/expand-absolute-path /usr/share/zsh/functions/Zle/forward-word-match /usr/share/zsh/functions/Zle/history-beginning-search-menu /usr/share/zsh/functions/Zle/history-pattern-search /usr/share/zsh/functions/Zle/history-search-end /usr/share/zsh/functions/Zle/incarg /usr/share/zsh/functions/Zle/incremental-complete-word /usr/share/zsh/functions/Zle/insert-composed-char /usr/share/zsh/functions/Zle/insert-files /usr/share/zsh/functions/Zle/insert-unicode-char /usr/share/zsh/functions/Zle/keeper /usr/share/zsh/functions/Zle/keymap+widget /usr/share/zsh/functions/Zle/kill-word-match /usr/share/zsh/functions/Zle/match-word-context /usr/share/zsh/functions/Zle/match-words-by-style /usr/share/zsh/functions/Zle/modify-current-argument /usr/share/zsh/functions/Zle/move-line-in-buffer /usr/share/zsh/functions/Zle/narrow-to-region /usr/share/zsh/functions/Zle/narrow-to-region-invisible /usr/share/zsh/functions/Zle/predict-on /usr/share/zsh/functions/Zle/quote-and-complete-word /usr/share/zsh/functions/Zle/read-from-minibuffer /usr/share/zsh/functions/Zle/replace-argument /usr/share/zsh/functions/Zle/replace-string /usr/share/zsh/functions/Zle/replace-string-again /usr/share/zsh/functions/Zle/select-bracketed /usr/share/zsh/functions/Zle/select-quoted /usr/share/zsh/functions/Zle/select-word-match /usr/share/zsh/functions/Zle/select-word-style /usr/share/zsh/functions/Zle/send-invisible /usr/share/zsh/functions/Zle/smart-insert-last-word /usr/share/zsh/functions/Zle/split-shell-arguments /usr/share/zsh/functions/Zle/surround /usr/share/zsh/functions/Zle/transpose-lines /usr/share/zsh/functions/Zle/transpose-words-match /usr/share/zsh/functions/Zle/up-case-word-match /usr/share/zsh/functions/Zle/up-line-or-beginning-search /usr/share/zsh/functions/Zle/url-quote-magic /usr/share/zsh/functions/Zle/vi-pipe /usr/share/zsh/functions/Zle/which-command /usr/share/zsh/functions/Zle/zcalc-auto-insert /usr/share/zsh/functions/Zle/zed-set-file-name /usr/share/zsh/site-functions
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Nov 19 01:14:14 2024