1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-03 01:11:37 +02:00
zsh/Completion/Base/Widget/_generic

12 lines
169 B
Plaintext
Raw Normal View History

#autoload
local curcontext="$curcontext"
if [[ -z "$curcontext" ]]; then
curcontext="${WIDGET}:::"
else
curcontext="${WIDGET}:${curcontext#*:}"
fi
_main_complete