1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-06 11:21:22 +02:00

fix to include + options in tag order (14416)

This commit is contained in:
Oliver Kiddle 2001-05-21 16:15:59 +00:00
parent 25b7d227bc
commit 0a159d0f73
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2001-05-21 Oliver Kiddle <opk@zsh.org>
* 14416: Completion/Base/Core/_tags: include + options for tag order
2001-05-21 Clint Adams <clint@zsh.org>
* unposted: Completion/Unix/Type/_diff_options: quote $@

View file

@ -41,7 +41,7 @@ if (( $# )); then
"$_sort_tags" "$@"
else
zstyle -a ":completion:${curcontext}:" tag-order order ||
order=('(|*-)argument-* (|*-)option-* values' options)
order=('(|*-)argument-* (|*-)option[-+]* values' options)
for tag in $order; do
case $tag in