diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2009-06-04 09:33:39 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2009-06-04 09:33:39 +0000 |
commit | 80b3a348279d93d8c5f4f31f1731973a3371a74a (patch) | |
tree | cfb2115f0d8edf2e0ef61bc959594797b305833f | |
parent | 529baba1be98be088b242eb2ffdfc15bf50263d7 (diff) | |
download | ports-80b3a348279d93d8c5f4f31f1731973a3371a74a.tar.gz ports-80b3a348279d93d8c5f4f31f1731973a3371a74a.zip |
Notes
-rw-r--r-- | shells/zsh/Makefile | 7 | ||||
-rw-r--r-- | shells/zsh/distinfo | 12 | ||||
-rw-r--r-- | shells/zsh/files/patch-Completion-Base-Utility-_arguments | 34 | ||||
-rw-r--r-- | shells/zsh/files/patch-Completion-Unix-Command-_zfs | 255 | ||||
-rw-r--r-- | shells/zsh/files/patch-Completion-Unix-Command-_zpool | 207 | ||||
-rw-r--r-- | shells/zsh/pkg-plist | 81 |
6 files changed, 65 insertions, 531 deletions
diff --git a/shells/zsh/Makefile b/shells/zsh/Makefile index 487d2cabf214..14830e588cae 100644 --- a/shells/zsh/Makefile +++ b/shells/zsh/Makefile @@ -6,8 +6,7 @@ # PORTNAME= zsh -PORTVERSION= 4.3.9 -PORTREVISION= 6 +PORTVERSION= 4.3.10 CATEGORIES= shells MASTER_SITES= SF .if !defined(NOPORTDOCS) @@ -32,7 +31,7 @@ CONFIGURE_ARGS= --with-term-lib="ncursesw ncurses" --with-tcsetpgrp \ EXTRA_PATCHES= ${FILESDIR}/extra-patch-bsdtar -OPTIONS= ZSH_GDBM "Enable GDBM support" off \ +OPTIONS= ZSH_GDBM "Enable GDBM support (GPL)" off \ ZSH_MEM "Enable zsh-mem and zsh-secure-free options" on \ ZSH_MAILDIR "Enable support for Maildirs in MAIL(PATH)" on \ ZSH_MULTIBYTE "Enable multibyte character support" on \ @@ -136,7 +135,7 @@ post-install: setopt extendedglob; \ for i in ${DATADIR}/${ZSH_VER}/functions/**/*(/) ; do \ zcompile -U -M $$i.zwc $$i/*~*.zwc(^/) ; \ - chmod 644 $$i.zwc ; \ + ${CHMOD} 644 $$i.zwc ; \ done' .include <bsd.port.post.mk> diff --git a/shells/zsh/distinfo b/shells/zsh/distinfo index 29eeffd37215..be8893a32544 100644 --- a/shells/zsh/distinfo +++ b/shells/zsh/distinfo @@ -1,6 +1,6 @@ -MD5 (zsh-4.3.9.tar.bz2) = 0539d0a590e545ad8c40ff8c97e94538 -SHA256 (zsh-4.3.9.tar.bz2) = 8fdd6d6c6dc3a061b0c9a1b26eb367d10c0d8094d4b8bd2613740fc40b4382ab -SIZE (zsh-4.3.9.tar.bz2) = 2659602 -MD5 (zsh-4.3.9-doc.tar.bz2) = b3a026cf02471b66454a2b241a4d92a4 -SHA256 (zsh-4.3.9-doc.tar.bz2) = 15ae762a228c2b2d410cecdddca279e49dfa6cfff85aaf8fa55e74940b4e8165 -SIZE (zsh-4.3.9-doc.tar.bz2) = 2570995 +MD5 (zsh-4.3.10.tar.bz2) = 74c5b275544400082a1cde806c98682a +SHA256 (zsh-4.3.10.tar.bz2) = 63fdc0273eadbb42d164f38b0b79922c0b3df0e97084e746a318276d935a4f7c +SIZE (zsh-4.3.10.tar.bz2) = 2735665 +MD5 (zsh-4.3.10-doc.tar.bz2) = c7bbc55d7914d7c3c60329d92396f75f +SHA256 (zsh-4.3.10-doc.tar.bz2) = f53d5c434fdb26fc79755279175514507eb1d11cf793ac57270d053ee61f37f9 +SIZE (zsh-4.3.10-doc.tar.bz2) = 2690183 diff --git a/shells/zsh/files/patch-Completion-Base-Utility-_arguments b/shells/zsh/files/patch-Completion-Base-Utility-_arguments deleted file mode 100644 index 8a3dcc7ab98e..000000000000 --- a/shells/zsh/files/patch-Completion-Base-Utility-_arguments +++ /dev/null @@ -1,34 +0,0 @@ ---- Completion/Base/Utility/_arguments.orig 2007-12-14 12:57:55.000000000 +0100 -+++ Completion/Base/Utility/_arguments 2008-11-17 12:14:23.806795295 +0100 -@@ -5,7 +5,7 @@ - - local long cmd="$words[1]" descr odescr mesg subopts opt opt2 usecc autod - local oldcontext="$curcontext" hasopts rawret optarg singopt alwopt --local setnormarg -+local setnormarg start rest - local -a match mbegin mend - - long=$argv[(I)--] -@@ -97,10 +97,19 @@ - # present. Maybe the problem was that the intervening code - # didn't. If it's buggy without removing them, the problem - # probably is later, not here. -- if [[ -z ${tmp[(r)${match[1]%%[^a-zA-Z0-9_-]#}]} ]]; then -- tmp+=($match[1]) -+ start=${match[1]} -+ rest=${match[2]} -+ if [[ -z ${tmp[(r)${start%%[^a-zA-Z0-9_-]#}]} ]]; then -+ # variant syntax seen in fetchmail: -+ # --[fetch]all means --fetchall or --all. -+ # maybe needs to be more general -+ if [[ $start = (#b)(*)\[(*)\](*) ]]; then -+ tmp+=("${match[1]}${match[2]}${match[3]}" "${match[1]}${match[3]}") -+ else -+ tmp+=($start) -+ fi - fi -- opt=$match[2] -+ opt=$rest - done - # If there's left over text, assume it's a description; it - # may be truncated but if it's too long it's no use anyway. diff --git a/shells/zsh/files/patch-Completion-Unix-Command-_zfs b/shells/zsh/files/patch-Completion-Unix-Command-_zfs deleted file mode 100644 index 6b8f4b2c187e..000000000000 --- a/shells/zsh/files/patch-Completion-Unix-Command-_zfs +++ /dev/null @@ -1,255 +0,0 @@ ---- Completion/Unix/Command/_zfs.orig 2008-08-12 12:28:11.000000000 +0200 -+++ Completion/Unix/Command/_zfs 2009-01-21 16:51:25.860277309 +0100 -@@ -97,9 +97,9 @@ - ;; - - ("clone") -+ # XXX needs to bail if there are no snapshots - _arguments -A "-*" \ - '-p[Create parent datasets]' \ -- # XXX needs to bail if there are no snapshots - ':snapshot:_zfs_dataset -t snap' \ - ':filesystem/volume:' - ;; -@@ -236,241 +236,3 @@ - } - - _zfs "$@" --#compdef zfs -- --_zfs() { -- local context state line expl -- typeset -A opt_args -- local -a subcmds rw_properties rw_propnames ro_properties -- -- subcmds=( -- "create" "destroy" "clone" "promote" "rename" "snapshot" -- "rollback" "list" "set" "get" "inherit" "mount" "unmount" -- "share" "unshare" "send" "receive" "allow" "unallow" -- "upgrade" -- ) -- -- ro_properties=( -- "name" "type" "creation" "used" "available" "referenced" -- "compressratio" "mounted" "origin" -- ) -- -- # TODO: Be cleverer about what values can be set. Is there any way to -- # set the sorting for *size properties to false by default? -- rw_properties=( -- "aclinherit:value:(discard noallow secure passthrough)" -- "aclmode:value:(discard groupmask passthrough)" -- "atime:value:(on off)" -- "canmount:value:(on off)" -- "checksum:value:(on off fletcher2 fletcher4 sha256)" -- "compression:value:(on off lzjb gzip gzip-{1..9})" -- "copies:value:(1 2 3)" -- "devices:value:(on off)" -- "exec:value:(on off)" -- "mountpoint:value:{if [[ -prefix /* ]]; then _path_files -/; else _wanted mountpoints expl 'mountpoint (type \"/\" to start completing paths)' compadd legacy none; fi}" -- "quota:number or 'none':{if [[ -prefix [0-9]## ]]; then _message -e 'number'; elif [[ $PREFIX == quota= ]]; then _wanted none expl 'number or none' compadd none; else _wanted none expl 'quota' compadd none; fi}" -- "readonly:value:(on off)" -- "recordsize:value:(512 1K 2K 4K 8K 16K 32K 64K 128K)" -- "reservation:value:" # <size>, "none" -- "setuid:value:(on off)" -- "shareiscsi:value:(on off)" # or "type=<type>" -- "sharenfs:value:(on off)" # or share(1M) options -- "snapdir:value:(hidden visible)" -- "version:value:(1 2 current)" -- "volblocksize:value:(512 1K 2K 4K 8K 16K 32K 64K 128K)" -- "volsize:value:" # <size> -- "xattr:value:(on off)" -- "zoned:value:(on off)" -- ) -- -- rw_propnames=( ${rw_properties%%:*} ) -- -- if [[ $service == "zfs" ]]; then -- _arguments -C -A "-*" \ -- '-\?[Help]' \ -- '*::command:->subcmd' && return 0 -- -- if (( CURRENT == 1 )); then -- _wanted commands expl "zfs subcommand" compadd -a subcmds -- return -- fi -- service="$words[1]" -- curcontext="${curcontext%:*}=$service:" -- fi -- -- case $service in -- ("create") -- _arguments -A "-*" \ -- '-p[Create parent datasets]' \ -- '-o[Set initial properties]:property:_values -s , "property" $rw_properties' \ -- - set1 \ -- ':filesystem:' \ -- - set2 \ -- '-s[Create sparse volume]' \ -- '-b[Set volblocksize]:blocksize:' \ -- '-V[Set size]:size:' \ -- ':volume:' -- ;; -- -- ("destroy") -- _arguments -A "-*" \ -- '-r[Recursively destroy all children]' \ -- '-R[Recursively destroy all dependents]' \ -- '-f[Force unmounts]' \ -- ':filesystem/volume/snapshot:_zfs_dataset' -- ;; -- -- ("snapshot") -- _arguments -A "-*" \ -- '-r[Recursively snapshot all descendant datasets]' \ -- ':filesystem/volume:_zfs_dataset -t fs -t vol -S@' -- ;; -- -- ("rollback") -- _arguments -A "-*" \ -- '-r[Recursively destroy more recent snapshots]' \ -- '-R[Recursively destroy more recent snapshots and clones]' \ -- '-f[Force unmounts]' \ -- ':snapshot:_zfs_dataset -t snap' -- ;; -- -- ("clone") -- _arguments -A "-*" \ -- '-p[Create parent datasets]' \ -- # XXX needs to bail if there are no snapshots -- ':snapshot:_zfs_dataset -t snap' \ -- ':filesystem/volume:' -- ;; -- -- ("promote") -- # XXX complete only cloned filesystems -- _arguments \ -- ':filesystem:_zfs_dataset -t fs' \ -- ;; -- -- ("rename") -- _arguments -A "-*" \ -- - set1 \ -- '-p[Create parent datasets]' \ -- ':filesystem/volume/snapshot:_zfs_dataset' \ -- ':filesystem/volume/snapshot:' \ -- - set2 \ -- '-r[Recursively rename snapshots of all descendent datasets]' \ -- ':snapshot:_zfs_dataset -t snap' \ -- ':snapshot:' -- ;; -- -- ("list") -- _arguments -A "-*" \ -- '-r[Recursively display children]' \ -- '-H[Scripting mode]' \ -- '-o[Properties to list]:property:_values -s , "property" $ro_properties $rw_propnames' \ -- '*-s[Sort key (ascending)]:property:_values "property" $ro_properties $rw_propnames' \ -- '*-S[Sort key (descending)]:property:_values "property" $ro_properties $rw_propnames' \ -- '-t[Dataset types to list]:dataset type:_values -s , "dataset type" filesystem snapshot volume' \ -- '*:filesystem/volume/snapshot:_zfs_dataset' -- ;; -- -- ("set") -- _arguments \ -- ':property:_values -s , "property" $rw_properties' \ -- '*:filesystem/volume:_zfs_dataset -t fs -t vol' -- ;; -- -- ("get") -- _arguments -A "-*" \ -- "-r[Recursively display children's properties]" \ -- '-H[Scripting mode]' \ -- '-p[Display numbers exactly]' \ -- '-s[Specify sources]:source:_values -s , "source" local default inherited temporary none' \ -- '-o[Specify fields]:field:_values -s , "field" name property value source' \ -- ':property:_values -s , "property" $ro_properties $rw_propnames all' \ -- '*:filesystem/volume/snapshot:_zfs_dataset' -- ;; -- -- ("inherit") -- _arguments -A "-*" \ -- '-r[Recursively inherit property for all children]' \ -- ':property:_values -s , "property" $ro_properties $rw_properties' \ -- '*:filesystem/volume:_zfs_dataset -t fs -t vol' -- ;; -- -- ("mount") -- _arguments -A "-*" \ -- '-o[Mount options]:mount options:_values -s , "option" {,no}{devices,exec,setuid} ro rw' \ -- '-O[Overlay mount]' \ -- '-v[Report mount progress]' \ -- - set1 \ -- ':filesystem:_zfs_dataset -t fs' \ -- - set2 \ -- '-a[Mount all available ZFS filesystems]' -- ;; -- -- ("unmount") -- _arguments -A "-*" \ -- - set1 \ -- '-f[Force unmount]' \ -- ':filesystem:_zfs_dataset -t fs -t mtpt' \ -- - set2 \ -- '-a[Unmount all ZFS filesystems]' -- ;; -- -- ("share") -- _arguments -A "-*" \ -- - set1 \ -- '-a[Share all available ZFS filesystems]' \ -- - set2 \ -- ':filesystem:_zfs_dataset -t fs' -- ;; -- -- ("unshare") -- _arguments -A "-*" \ -- - set1 \ -- '-a[Unshare all shared ZFS filesystems]' \ -- - set2 \ -- '-F[Force unshare]' \ -- ':filesystem:_zfs_dataset -t fs -t mtpt' -- ;; -- -- ("send") -- _arguments -A "-*" \ -- '-i[Generate an incremental stream]:snapshot:_zfs_dataset -t snap' \ -- ':snapshot:_zfs_dataset -t snap' -- ;; -- -- ("receive") -- _arguments -A "-*" \ -- '-v[Verbose]' \ -- '-n[Do not receive the stream]' \ -- '-F[Force a rollback if necessary]' \ -- - set1 \ -- ':filesystem/volume/snapshot:_zfs_dataset' \ -- - set2 \ -- '-d[Set path prefix]:filesystem:_zfs_dataset -t fs' -- ;; -- -- ("allow"|"unallow") -- _message "unimplemented zfs subcommand: $service" -- ;; -- -- ("upgrade") -- _arguments -A "-*" \ -- - set1 \ -- '-v[Verbose]' \ -- - set2 \ -- '-a[Upgrade all filesystems on all pools]' \ -- '-r[Upgrade descendent filesystems, too]' \ -- '-V[Upgrade to specified version]:version:(1 2)' \ -- - set3 \ -- '-r[Upgrade descendent filesystems, too]' \ -- '-V[Upgrade to specified version]:version:(1 2)' \ -- ':filesystem:_zfs_dataset -t fs' \ -- ;; -- -- (*) -- _message "unknown zfs subcommand: $service" -- ;; -- esac --} -- --_zfs "$@" diff --git a/shells/zsh/files/patch-Completion-Unix-Command-_zpool b/shells/zsh/files/patch-Completion-Unix-Command-_zpool deleted file mode 100644 index f2e10b6bc65e..000000000000 --- a/shells/zsh/files/patch-Completion-Unix-Command-_zpool +++ /dev/null @@ -1,207 +0,0 @@ ---- Completion/Unix/Command/_zpool.orig 2008-08-12 12:28:11.000000000 +0200 -+++ Completion/Unix/Command/_zpool 2009-01-21 16:49:13.434692608 +0100 -@@ -199,204 +199,3 @@ - } - - _zpool "$@" --#compdef zpool -- --_zpool() { -- local -a subcmds fields -- -- subcmds=( -- create destroy add remove list iostat status online -- offline clear attach detach replace scrub import export -- upgrade history get set -- ) -- -- fields=( -- name\:"Pool name" size\:"Total size" used\:"Space used" -- available\:"Space available" capacity\:"Space used (percentage)" -- health\:"Health status" -- ) -- -- properties=( -- "bootfs:value:" -- "autoreplace:value:(on off)" -- "delegation:value:(on off)" -- ) -- propnames=( ${properties%%:*} ) -- -- import_properties=( -- xattr -- copies -- shareiscsi -- canmount -- share -- sharenfs -- userprop -- mount -- ) -- -- if [[ $service == "zpool" ]]; then -- _arguments -C -A "-*" \ -- '-\?[Help]' \ -- '*::command:->subcmd' && return 0 -- -- if (( CURRENT == 1 )); then -- _wanted commands expl "zpool subcommand" compadd -a subcmds -- return -- fi -- service="$words[1]" -- curcontext="${curcontext%:*}=$service:" -- fi -- -- case $service in -- (clear) -- _arguments \ -- ':pool name:_zfs_pool' \ -- '*:virtual device:_files' -- ;; -- -- (create) -- # TODO: investigate better vdev handling -- _arguments -A "-*" \ -- '-f[Force use of in-use devices]' \ -- '-n[Display configuration without creating pool]' \ -- '-R[Use alternate root]:alternate root:_files -/' \ -- '-m[Set mountpoint for root dataset]:mountpoint:' \ -- ':pool name:' \ -- '*:virtual device:_files' -- ;; -- -- (destroy) -- _arguments -A "-*" \ -- '-f[Force active datasets to be unmounted]' \ -- ':pool name:_zfs_pool' -- ;; -- -- (add) -- _arguments -A "-*" \ -- '-f[Force use of in-use devices]' \ -- '-n[Display configuration without modifying pool]' \ -- ':pool name:_zfs_pool' \ -- '*:virtual device:_files' -- ;; -- -- (list) -- _arguments \ -- '-H[Scripted mode]' \ -- '-o[Fields to list]:field:_values -s , "field" ${^fields/\:/[}\]' \ -- '::pool name:_zfs_pool' -- ;; -- -- (iostat) -- _arguments -A "-*" \ -- '-v[Verbose statistics]' \ -- '*::pool name:_zfs_pool' \ -- '::interval:' \ -- '::count:' -- ;; -- -- (status) -- _arguments -A "-*" \ -- '-v[Verbose information]' \ -- '-x[Show only unhealthy pools]' \ -- '*::pool name:_zfs_pool' -- ;; -- -- (offline) -- _arguments -A "-*" \ -- '-t[Offline until next reboot]' \ -- ':pool name:_zfs_pool' \ -- '*:virtual device:_files' -- ;; -- -- (online) -- _arguments \ -- ':pool name:_zfs_pool' \ -- '*:virtual device:_files' -- ;; -- -- (attach) -- # TODO: first device should choose first from existing. -- _arguments \ -- '-f[Force attach, even if in use]' \ -- ':pool name:_zfs_pool' \ -- ':virtual device:_files' \ -- ':virtual device:_files' -- ;; -- -- (detach) -- _arguments \ -- ':pool name:_zfs_pool' \ -- ':virtual device:_files' -- ;; -- -- (replace) -- _arguments -A "-*" \ -- '-f[Force attach, even if in use]' \ -- ':pool name:_zfs_pool' \ -- ':virtual device:_files' \ -- '::virtual device:_files' -- ;; -- -- (scrub) -- _arguments -A "-*" \ -- '-s[Stop scrubbing]' \ -- '*:pool name:_zfs_pool' -- ;; -- -- (export) -- _arguments -A "-*" \ -- '-f[Forcefully unmount all datasets]' \ -- '*:pool name:_zfs_pool' -- ;; -- -- (import) -- # TODO: -o should complete options -- _arguments -A "-*" \ -- '*-d[Search for devices or files in directory]:_files -/' \ -- '-D[Destroyed pools]' \ -- '-f[Force import]' \ -- - set1 \ -- '-o[Mount options]' \ -- '-p[Set property]:property:_values -s , "property" $import_properties' \ -- '-R[Alternate root]:_files -/' \ -- '*:pool name or id:_zfs_pool' \ -- '::new pool name:' \ -- - set2 \ -- '-a[All pools]' -- ;; -- -- (get) -- _arguments -A "-*" \ -- ':property:_values -s , "property" $propnames all' \ -- '*:pool name:_zfs_pool' -- ;; -- -- (set) -- _arguments -A "-*" \ -- ':property:_values -s , "property" $properties' \ -- '*:pool name:_zfs_pool' -- ;; -- -- (upgrade) -- _arguments -A "-*" \ -- - set1 \ -- '-v[Display ZFS versions and descriptions]' \ -- - set2 \ -- '-a[Upgrade all pools]' \ -- '*:pool name:_zfs_pool' -- ;; -- -- (history) -- _arguments -A "-*" \ -- '-i[Display internal events]' \ -- '-l[Long format]' \ -- '*:pool name:_zfs_pool' -- ;; -- -- (*) -- _message "unknown zpool subcommand: $service" -- ;; -- esac --} -- --_zpool "$@" diff --git a/shells/zsh/pkg-plist b/shells/zsh/pkg-plist index 44bc340769d2..087546c60c6b 100644 --- a/shells/zsh/pkg-plist +++ b/shells/zsh/pkg-plist @@ -47,6 +47,7 @@ bin/zsh-%%ZSH_VER%% %%SHARED%%@dirrm lib/zsh @exec mkdir -p %D/%%DATADIR%%/site-functions 2> /dev/null || true @dirrmtry %%DATADIR%%/site-functions +%%DATADIR%%/%%ZSH_VER%%/functions/Calendar.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Calendar/age %%DATADIR%%/%%ZSH_VER%%/functions/Calendar/calendar %%DATADIR%%/%%ZSH_VER%%/functions/Calendar/calendar_add @@ -58,6 +59,8 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Calendar/calendar_show %%DATADIR%%/%%ZSH_VER%%/functions/Calendar/calendar_showdate %%DATADIR%%/%%ZSH_VER%%/functions/Calendar/calendar_sort +%%DATADIR%%/%%ZSH_VER%%/functions/Completion.zwc +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/AIX.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Completion/AIX/_floppy %%DATADIR%%/%%ZSH_VER%%/functions/Completion/AIX/_logical_volumes %%DATADIR%%/%%ZSH_VER%%/functions/Completion/AIX/_lscfg @@ -69,6 +72,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/AIX/_physical_volumes %%DATADIR%%/%%ZSH_VER%%/functions/Completion/AIX/_smit %%DATADIR%%/%%ZSH_VER%%/functions/Completion/AIX/_volume_groups +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/BSD.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Completion/BSD/_bsd_pkg %%DATADIR%%/%%ZSH_VER%%/functions/Completion/BSD/_chflags %%DATADIR%%/%%ZSH_VER%%/functions/Completion/BSD/_csup @@ -81,6 +85,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/BSD/_portlint %%DATADIR%%/%%ZSH_VER%%/functions/Completion/BSD/_portsnap %%DATADIR%%/%%ZSH_VER%%/functions/Completion/BSD/_powerd +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Base.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Base/_all_labels %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Base/_all_matches %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Base/_alternative @@ -136,8 +141,10 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Base/_store_cache %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Base/_sub_commands %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Base/_tags +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Base/_user_expand %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Base/_values %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Base/_wanted +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Cygwin.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Cygwin/_cygcheck %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Cygwin/_cygpath %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Cygwin/_cygrunsrv @@ -145,11 +152,12 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Cygwin/_cygstart %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Cygwin/_dumper %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Cygwin/_getclip -%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Cygwin/_getfacl %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Cygwin/_mkshortcut %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Cygwin/_mkzsh %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Cygwin/_pscp %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Cygwin/_putclip +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Cygwin/_readshortcut +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Darwin.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Darwin/_defaults %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Darwin/_fink %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Darwin/_hdiutil @@ -159,6 +167,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Darwin/_qtplay %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Darwin/_retrieve_mac_apps %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Darwin/_softwareupdate +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Debian.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Debian/_a2utils %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Debian/_apt %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Debian/_apt-file @@ -207,6 +216,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Debian/_vim-addons %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Debian/_wajig %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Debian/_wanna-build +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_acpi %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_acpitool %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_analyseplugin @@ -222,10 +232,12 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_iwconfig %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_losetup %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_lsusb +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_mdadm %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_mii-tool %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_modutils %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_mondo %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_pkgtool +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_rpmbuild %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_sshfs %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_strace %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_tpb @@ -236,10 +248,30 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_vserver %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_wakeup_capable_devices %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux/_yast +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Mandriva.zwc +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Mandriva/_rebootin %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Mandriva/_urpmi +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Redhat.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Redhat/_rpm %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Redhat/_service %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Redhat/_yum +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris.zwc +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris/_coreadm +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris/_dhcpinfo +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris/_dladm +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris/_dumpadm +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris/_gcore +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris/_inetadm +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris/_pfexec +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris/_ptree +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris/_savecore +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris/_svcadm +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris/_svccfg +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris/_svcprop +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris/_svcs +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris/_svcs_fmri +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris/_zlogin +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_a2ps %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_aap %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_ant @@ -283,6 +315,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_darcs %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_date %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_dd +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_devtodo %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_dhclient %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_dict %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_dict_words @@ -319,6 +352,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_genisoimage %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_getconf %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_getent +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_getfacl %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_getmail %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_git %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_global @@ -336,6 +370,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_gs %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_guilt %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_gzip +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_have_glob_qual %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_hosts %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_iconv %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_id @@ -429,6 +464,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_pspdf %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_psutils %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_pump +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_pydoc %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_python %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_qemu %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_quilt @@ -451,6 +487,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_screen %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_sed %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_services +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_setfacl %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_sh %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_showmount %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_signals @@ -487,6 +524,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_tla %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_todo.sh %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_toilet +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_topgit %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_totd %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_tracepath %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_twisted @@ -512,6 +550,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_wiggle %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_xargs %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_xmlsoft +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_xmms2 %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_yafc %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_yodl %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_yp @@ -522,6 +561,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_zfs_pool %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_zip %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_zpool +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/X.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Completion/X/_acroread %%DATADIR%%/%%ZSH_VER%%/functions/Completion/X/_dcop %%DATADIR%%/%%ZSH_VER%%/functions/Completion/X/_gnome-gv @@ -570,6 +610,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/X/_xterm %%DATADIR%%/%%ZSH_VER%%/functions/Completion/X/_xv %%DATADIR%%/%%ZSH_VER%%/functions/Completion/X/_xwit +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_alias %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_aliases %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_arrays @@ -598,6 +639,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_file_descriptors %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_first %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_functions +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_globflags %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_globqual_delims %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_globquals %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_hash @@ -642,6 +684,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_vars %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_wait %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_which +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_zattr %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_zcalc_line %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_zcompile %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_zed @@ -656,11 +699,14 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/compdump %%DATADIR%%/%%ZSH_VER%%/functions/Completion/compinit %%DATADIR%%/%%ZSH_VER%%/functions/Completion/compinstall +%%DATADIR%%/%%ZSH_VER%%/functions/Exceptions.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Exceptions/catch %%DATADIR%%/%%ZSH_VER%%/functions/Exceptions/throw +%%DATADIR%%/%%ZSH_VER%%/functions/MIME.zwc %%DATADIR%%/%%ZSH_VER%%/functions/MIME/pick-web-browser %%DATADIR%%/%%ZSH_VER%%/functions/MIME/zsh-mime-handler %%DATADIR%%/%%ZSH_VER%%/functions/MIME/zsh-mime-setup +%%DATADIR%%/%%ZSH_VER%%/functions/Misc.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Misc/add-zsh-hook %%DATADIR%%/%%ZSH_VER%%/functions/Misc/allopt %%DATADIR%%/%%ZSH_VER%%/functions/Misc/checkmail @@ -687,7 +733,9 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Misc/zmv %%DATADIR%%/%%ZSH_VER%%/functions/Misc/zrecompile %%DATADIR%%/%%ZSH_VER%%/functions/Misc/zstyle+ +%%DATADIR%%/%%ZSH_VER%%/functions/Newuser.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Newuser/zsh-newuser-install +%%DATADIR%%/%%ZSH_VER%%/functions/Prompts.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Prompts/prompt_adam1_setup %%DATADIR%%/%%ZSH_VER%%/functions/Prompts/prompt_adam2_setup %%DATADIR%%/%%ZSH_VER%%/functions/Prompts/prompt_bart_setup @@ -706,6 +754,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Prompts/prompt_walters_setup %%DATADIR%%/%%ZSH_VER%%/functions/Prompts/prompt_zefram_setup %%DATADIR%%/%%ZSH_VER%%/functions/Prompts/promptinit +%%DATADIR%%/%%ZSH_VER%%/functions/TCP.zwc %%DATADIR%%/%%ZSH_VER%%/functions/TCP/tcp_alias %%DATADIR%%/%%ZSH_VER%%/functions/TCP/tcp_close %%DATADIR%%/%%ZSH_VER%%/functions/TCP/tcp_command @@ -724,6 +773,8 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/TCP/tcp_spam %%DATADIR%%/%%ZSH_VER%%/functions/TCP/tcp_talk %%DATADIR%%/%%ZSH_VER%%/functions/TCP/tcp_wait +%%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info.zwc +%%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info/Backends.zwc %%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info/Backends/VCS_INFO_detect_bzr %%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info/Backends/VCS_INFO_detect_cdv %%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info/Backends/VCS_INFO_detect_cvs @@ -750,6 +801,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info/VCS_INFO_bydir_detect %%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info/VCS_INFO_check_com %%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info/VCS_INFO_formats +%%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info/VCS_INFO_get_cmd %%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info/VCS_INFO_maxexports %%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info/VCS_INFO_nvcsformats %%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info/VCS_INFO_realpath @@ -759,6 +811,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info/vcs_info_lastmsg %%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info/vcs_info_printsys %%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info/vcs_info_setsys +%%DATADIR%%/%%ZSH_VER%%/functions/Zftp.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Zftp/zfanon %%DATADIR%%/%%ZSH_VER%%/functions/Zftp/zfautocheck %%DATADIR%%/%%ZSH_VER%%/functions/Zftp/zfcd @@ -790,6 +843,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Zftp/zftype %%DATADIR%%/%%ZSH_VER%%/functions/Zftp/zfuget %%DATADIR%%/%%ZSH_VER%%/functions/Zftp/zfuput +%%DATADIR%%/%%ZSH_VER%%/functions/Zle.zwc %%DATADIR%%/%%ZSH_VER%%/functions/Zle/backward-kill-word-match %%DATADIR%%/%%ZSH_VER%%/functions/Zle/backward-word-match %%DATADIR%%/%%ZSH_VER%%/functions/Zle/capitalize-word-match @@ -832,30 +886,6 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Zle/which-command %%DATADIR%%/%%ZSH_VER%%/functions/Zle/zed-set-file-name %%DATADIR%%/%%ZSH_VER%%/scripts/newuser -%%DATADIR%%/%%ZSH_VER%%/functions/Zle.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Zftp.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info/Backends.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/TCP.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Prompts.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Newuser.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Misc.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/MIME.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Exceptions.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Completion/X.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Redhat.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Mandriva.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Debian.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Darwin.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Cygwin.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Base.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Completion/BSD.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Completion/AIX.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Completion.zwc -%%DATADIR%%/%%ZSH_VER%%/functions/Calendar.zwc @dirrm %%DATADIR%%/%%ZSH_VER%%/functions/Zle @dirrm %%DATADIR%%/%%ZSH_VER%%/functions/Zftp @dirrm %%DATADIR%%/%%ZSH_VER%%/functions/VCS_Info/Backends @@ -869,6 +899,7 @@ bin/zsh-%%ZSH_VER%% @dirrm %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh @dirrm %%DATADIR%%/%%ZSH_VER%%/functions/Completion/X @dirrm %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix +@dirrm %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Solaris @dirrm %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Redhat @dirrm %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Mandriva @dirrm %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Linux |