diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-07-03 16:32:35 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-07-03 16:32:35 +0000 |
commit | 45df094bdcca308c22de9a67189f33e5628a33ea (patch) | |
tree | d88a37581b4cfc02993ea493f0b5a358278a1b20 | |
parent | fe43e0dae0c9d3a35c268fa320a4acf13c360794 (diff) | |
download | zsh-dot-zsh-3.1.5-pws-19.tar.gz zsh-dot-zsh-3.1.5-pws-19.tar.xz zsh-dot-zsh-3.1.5-pws-19.zip |
-rw-r--r-- | Completion/Builtins/_cd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Builtins/_cd b/Completion/Builtins/_cd index 61abd2068..4a846c6aa 100644 --- a/Completion/Builtins/_cd +++ b/Completion/Builtins/_cd @@ -5,7 +5,7 @@ # and the string doesn't begin with ~, /, ./ or ../. # - In the second argument to cd for the form `cd old new', completes # possible `new' strings by examining `old' and $PWD. -# - After pushd - or pushd +, completes numbers, but the listing +# - After - or +, completes numbers, but the listing # gives you the list of directories to complete. This turns on # menu-completion and lists the possibilities automatically, otherwise # it's not a lot of use. If you don't type the + or - it will @@ -25,7 +25,7 @@ if [[ CURRENT -eq 3 ]]; then # Now remove all the common parts of $PWD and the completions from this rep=(${${rep#${PWD%%$words[2]*}}%${PWD#*$words[2]}}) (( ! $#rep )) || compadd $rep -elif [[ $words[1] = pu* && $PREFIX = [-+]* ]]; then +elif [[ $PREFIX = [-+]* ]]; then # pushd: just complete the numbers, but show the full directory list with # numbers. # For - we do the same thing, but reverse the numbering (other |