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

local format

_tags any messages || return 1

format="${compconfig[message_format]:-$compconfig[description_format]}"

if [[ -n "$format" ]]; then
  if [[ $compstate[nmatches] -eq 0 ]]; then
    compstate[list]=list
    compstate[force_list]=yes
    compstate[insert]=''
    compadd -UX "${format//\\%d/$1}" -n ''
  else
    compadd -X "${format//\\%d/$1}" -n '' && compstate[force_list]=yes
  fi
fi