1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-01 05:16:05 +01:00

37975: Completion/Unix/Command/_php: remove _arguments' -A option

This commit is contained in:
Eric Cook 2016-02-15 22:13:35 -05:00
parent ac5d83bf56
commit 40b3d2a1f6
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2016-02-15 Eric Cook <llua@gmx.com>
* 37975: Completion/Unix/Command/_php: allow completion after
the first non-option argument.
2016-02-14 Barton E. Schaefer <schaefer@zsh.org>
* 37898: Completion/compinstall: fix typo in completer menu

View file

@ -43,7 +43,7 @@ args+=(
'(-)*::script argument: _normal'
)
_arguments -C -s -S -A "-*" "$args[@]" && return 0
_arguments -C -s -S "$args[@]" && return 0
case $state in
directive)