1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-19 05:24:23 +01:00
zsh/Completion/Base/Widget/_generic

12 lines
178 B
Plaintext

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