diff options
author | Doug Kearns <dkearns@users.sourceforge.net> | 2005-07-25 10:55:50 +0000 |
---|---|---|
committer | Doug Kearns <dkearns@users.sourceforge.net> | 2005-07-25 10:55:50 +0000 |
commit | c42ab7adb5afdd6f9f4c33a5cc9fa5ed1171f2d0 (patch) | |
tree | df2e4fbe21a9258d51f376633325c353caf25a47 /Completion/Unix | |
parent | e09dc3c0ed50466a0e2c3632e63b7b728024903a (diff) | |
download | zsh-c42ab7adb5afdd6f9f4c33a5cc9fa5ed1171f2d0.tar.gz zsh-c42ab7adb5afdd6f9f4c33a5cc9fa5ed1171f2d0.tar.xz zsh-c42ab7adb5afdd6f9f4c33a5cc9fa5ed1171f2d0.zip |
unposted: add missing compset -S call to _php
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Command/_php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_php b/Completion/Unix/Command/_php index bd210dccd..7688dd571 100644 --- a/Completion/Unix/Command/_php +++ b/Completion/Unix/Command/_php @@ -44,13 +44,14 @@ _arguments -C -s -S -A "-*" "$args[@]" && return 0 case $state in directive) - local -a directives + local -a directives suf local code='foreach (ini_get_all() as $k => $v) { echo "$k\n"; }' directives=( $(_call_program directives $words[1] -r ${(q)code} 2>/dev/null) ) if compset -P '*='; then _default && return 0 else - _wanted directives expl 'configuration directive' compadd -qS= -a directives && return 0 + compset -S '=*' || suf=( -qS '=' ) + _wanted directives expl 'configuration directive' compadd "$suf[@]" -a directives && return 0 fi ;; extension) |