mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-27 16:50:58 +01: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*]'
|