about summary refs log tree commit diff
path: root/Functions
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:24:21 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:24:21 +0000
commite40d5f133fc50e5f26a32064627aca8a551df939 (patch)
treef863e683f4ad58d33e10ad670d120caf80ab657a /Functions
parent3b3a55e39bbf0d24d28ecd00818b5f300b84f27c (diff)
downloadzsh-e40d5f133fc50e5f26a32064627aca8a551df939.tar.gz
zsh-e40d5f133fc50e5f26a32064627aca8a551df939.tar.xz
zsh-e40d5f133fc50e5f26a32064627aca8a551df939.zip
moved to ./Functions/Compctl/cdmatch
Diffstat (limited to 'Functions')
-rwxr-xr-xFunctions/Misc/cdmatch23
1 files changed, 0 insertions, 23 deletions
diff --git a/Functions/Misc/cdmatch b/Functions/Misc/cdmatch
deleted file mode 100755
index 7c4bb9ae7..000000000
--- a/Functions/Misc/cdmatch
+++ /dev/null
@@ -1,23 +0,0 @@
-# Start of cdmatch.
-# Save in your functions directory and autoload, then do
-# compctl -x 'S[/][~][./][../]' -g '*(-/)' - \
-#         'n[-1,/], s[]' -K cdmatch -S '/' -- cd pushd
-#
-# Completes directories for cd, pushd, ... anything which knows about cdpath.
-# You do not have to include `.' in your cdpath.
-#
-# It works properly only if $ZSH_VERSION > 3.0-pre4.  Remove `emulate -R zsh'
-# for all other values of $ZSH_VERSION > 2.6-beta2. For earlier versions
-# it still works if RC_EXPAND_PARAM is not set or when cdpath is empty.
-emulate -R zsh
-setopt localoptions
-local narg pref cdp
-
-read -nc narg
-read -Ac pref
-
-cdp=(. $cdpath)
-reply=( ${^cdp}/${pref[$narg]%$2}*$2(-/DN^M:t) )
-
-return
-# End of cdmatch.