mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-05 23:11:11 +02:00
8 lines
242 B
Text
8 lines
242 B
Text
#autoload
|
|
|
|
# This should be used to complete parameter names if you need some of the
|
|
# extra options of compadd. It completes only non-local parameters.
|
|
|
|
local expl
|
|
|
|
_wanted parameters expl parameter compadd "$@" -k 'parameters[(R)^*local*]'
|