mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-12-03 16:51:37 +01:00
36177: _setopt: complete printexitvalue both ways
This commit is contained in:
parent
5d019f426a
commit
3f171fd463
2 changed files with 8 additions and 2 deletions
|
|
@ -2,8 +2,9 @@
|
|||
|
||||
local expl ret=1
|
||||
local -a onopts offopts
|
||||
onopts=( ${(k)_comp_caller_options[(R)on]} )
|
||||
offopts=( ${(k)_comp_caller_options[(R)off]} )
|
||||
onopts=( ${(k)_comp_caller_options[(R)on]} printexitvalue )
|
||||
offopts=( ${(k)_comp_caller_options[(R)off]} printexitvalue )
|
||||
typeset -U onopts offopts
|
||||
case $service in
|
||||
setopt) onopts=(no$onopts) ;;
|
||||
unsetopt) offopts=(no$offopts) ;;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue