1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-22 16:20:23 +02:00

unposted c.f. 46034: workaround incompatibility with sh_file_expansion option

This commit is contained in:
Oliver Kiddle 2020-06-26 00:46:00 +02:00
parent 858ddcbd6e
commit d14a924c37
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2020-06-26 Oliver Kiddle <okiddle@yahoo.co.uk>
* unposted c.f. 46034: Completion/Unix/Command/_gpg: workaround
incompatibility with sh_file_expansion option
* 46106: Completion/BSD/Command/_usbconfig: new completion
* 46105: Completion/X/Command/_xinput: new xinput completion

View file

@ -173,7 +173,7 @@ fi
'--dump-options[show all options]'
)
extra=( ${${${args#\([^\)]#\)}#\*}%%[:=\[]*} )
extra=( ${${${args#\([^\)]#\)}#\*}%%[=:\[]*} )
extra=( ${allopts:|extra} )
_arguments -C -s -S -A "-*" $args $extra '*:args:->args' && ret=0