mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-01 21:51:40 +02:00
unposted: declare _links vals parameter local
This commit is contained in:
parent
f64cc0a2df
commit
ce16f63906
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-06-30 Doug Kearns <djkea2@gus.gscit.monash.edu.au>
|
||||
|
||||
* unposted: Completion/Unix/Command/_links: declare parameter vals
|
||||
local
|
||||
|
||||
2005-06-28 Doug Kearns <djkea2@gus.gscit.monash.edu.au>
|
||||
|
||||
* 21392: Completion/Unix/Command/_w3m: update w3m completion for
|
||||
|
|
|
@ -32,7 +32,8 @@ case $state in
|
|||
_alternative 'files:file:_files -g "*.x#html(-.)"' 'urls:URL:_urls' && ret=0
|
||||
;;
|
||||
graphics_drivers)
|
||||
vals=(${=${${${(f)"$(_call_program links-graphics-drivers links -driver help 2>&1)"}[-1]}//','/''}} )
|
||||
local -a vals
|
||||
vals=( ${=${${${(f)"$(_call_program links-graphics-drivers links -driver help 2>&1)"}[-1]}//','/''}} )
|
||||
_describe -t links-graphics-drivers 'graphics driver' vals && ret=0
|
||||
;;
|
||||
proxies)
|
||||
|
|
Loading…
Reference in a new issue