about summary refs log tree commit diff
path: root/Completion/Core/_message
blob: a6cb799e55f249b50e2e1c10f3d684cd3c663a98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#autoload

local format

_tags messages || return 1

zstyle -s ":completion:${curcontext}:messages" format format ||
    zstyle -s ":completion:${curcontext}:descriptions" format format

if [[ -n "$format" ]]; then
  zformat -f format "$format" "d:$1" "${(@)argv[2,-1]}"
  if [[ $compstate[nmatches] -eq 0 ]]; then
    compstate[list]='list force'
    compstate[insert]=''
    compadd -UX "${format}" -n ''
  else
    compadd -X "${format}" -n '' && compstate[list]='list force'
  fi
fi