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