1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-30 19:20:53 +02:00
zsh/Completion/Base/Widget/_generic
2007-04-15 17:38:12 +00:00

11 lines
178 B
Text

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