zsh-workers
 help / color / mirror / code / Atom feed
3c61d1125d46aaf6ec39a4f2cf385095fd895da0 blob 1981 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
 
#autoload

local tags def expl descr action mesgs nm="$compstate[nmatches]" subopts
local opt ws curcontext="$curcontext"

subopts=()
while getopts 'O:C:' opt; do
  case "$opt" in
  O) subopts=( "${(@P)OPTARG}" ) ;;
  C) curcontext="${curcontext%:*}:$OPTARG" ;;
  esac
done

shift OPTIND-1

[[ "$1" = -(|-) ]] && shift

mesgs=()

_tags "${(@)argv%%:*}"

while _tags; do
  for def; do
    if _requested "${def%%:*}"; then
      descr="${${def#*:}%%:*}"
      action="${def#*:*:}"

      _description "${def%%:*}" expl "$descr"

      if [[ "$action" = \ # ]]; then

        # An empty action means that we should just display a message.

        mesgs=( "$mesgs[@]" "${def%%:*}:$descr")
      elif [[ "$action" = \(\(*\)\) ]]; then

        # ((...)) contains literal strings with descriptions.

        eval ws\=\( "${action[3,-3]}" \)

        _describe -t "${def%%:*}" "$descr" ws -M 'r:|[_-]=* r:|=*' "$subopts[@]"
      elif [[ "$action" = \(*\) ]]; then

        # Anything inside `(...)' is added directly.

        eval ws\=\( "${action[2,-2]}" \)

        _all_labels "${def%%:*}" expl "$descr" \
            compadd "$subopts[@]" -a - ws
      elif [[ "$action" = \{*\} ]]; then

        # A string in braces is evaluated.

        while _next_label "${def%%:*}" expl "$descr"; do
          eval "$action[2,-2]"
        done
      elif [[ "$action" = \ * ]]; then

        # If the action starts with a space, we just call it.

        eval "action=( $action )"
        while _next_label "${def%%:*}" expl "$descr"; do
          "$action[@]"
        done
      else

        # Otherwise we call it with the description-arguments built above.

        eval "action=( $action )"
	while _next_label "${def%%:*}" expl "$descr"; do
          "$action[1]" "$subopts[@]" "$expl[@]" "${(@)action[2,-1]}"
        done
      fi
    fi
  done
  [[ nm -ne compstate[nmatches] ]] && return 0
done

for descr in "$mesgs[@]"; do
  _message -e "${descr%%:*}" "${descr#*:}"
done

return 1
debug log:

solving 3c61d1125 ...
found 3c61d1125 in https://git.vuxu.org/mirror/zsh/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).