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:
parent
ac5d83bf56
commit
40b3d2a1f6
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue