1999-08-19 13:18:10 +02:00
|
|
|
#autoload
|
|
|
|
|
2000-05-02 12:30:41 +02:00
|
|
|
local format raw
|
1999-08-19 13:18:10 +02:00
|
|
|
|
2000-05-02 12:30:41 +02:00
|
|
|
_tags messages || return 1
|
1999-08-19 13:18:10 +02:00
|
|
|
|
2000-05-02 12:30:41 +02:00
|
|
|
if [[ "$1" = -r ]]; then
|
|
|
|
raw=yes
|
|
|
|
shift
|
|
|
|
format="$1"
|
|
|
|
else
|
|
|
|
zstyle -s ":completion:${curcontext}:messages" format format ||
|
|
|
|
zstyle -s ":completion:${curcontext}:descriptions" format format
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -n "$format$raw" ]]; then
|
|
|
|
[[ -z "$raw" ]] && zformat -f format "$format" "d:$1" "${(@)argv[2,-1]}"
|
|
|
|
compadd -x "$format"
|
2000-05-05 13:21:50 +02:00
|
|
|
_comp_mesg=yes
|
1999-08-19 13:18:10 +02:00
|
|
|
fi
|