mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-29 05:21:00 +01:00
When completing inside ~[...] (_with_ the trailing `]` present), the
following bugs occured:
- Subscript completion was skipped entirely when there were one or more
slashes ('/') in the subscript, which is incorrect, since slashes are
allowed there.
- Instead of going through _complete, $_comps[-subscript-] was called
immediately, causing _setup to be skipped.
- If succesful, _main_complete was exited right after, causing
menu-style, comppostfuncs and other essential completion features to
be skipped.
|
||
|---|---|---|
| .. | ||
| .distfiles | ||
| _all_labels | ||
| _description | ||
| _dispatch | ||
| _main_complete | ||
| _message | ||
| _next_label | ||
| _normal | ||
| _requested | ||
| _setup | ||
| _tags | ||
| _wanted | ||