mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 05:24:23 +01:00
12 lines
178 B
Plaintext
12 lines
178 B
Plaintext
#autoload
|
|
|
|
local curcontext="${curcontext:-}"
|
|
|
|
if [[ -z "$curcontext" ]]; then
|
|
curcontext="${WIDGET}:::"
|
|
else
|
|
curcontext="${WIDGET}:${curcontext#*:}"
|
|
fi
|
|
|
|
_main_complete "$@"
|