mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-11 13:01:28 +02:00
11 lines
173 B
Text
11 lines
173 B
Text
#autoload
|
|
|
|
local curcontext="${curcontext:-}"
|
|
|
|
if [[ -z "$curcontext" ]]; then
|
|
curcontext="${WIDGET}:::"
|
|
else
|
|
curcontext="${WIDGET}:${curcontext#*:}"
|
|
fi
|
|
|
|
_main_complete
|