1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-01 16:31:53 +02:00

20254: restrict scope of the default tag-order to fix a problem with cdrecord

completion. Ideally the tag-order should go but _arguments currently needs it.
This commit is contained in:
Oliver Kiddle 2004-08-11 11:57:04 +00:00
parent 4f5e97a0bf
commit ad25b67e3d
2 changed files with 6 additions and 0 deletions

@ -1,3 +1,8 @@
2004-08-11 Oliver Kiddle <opk@zsh.org>
* 20254: Completion/Base/Core/_tags: restrict the scope of the
default tag-order to fix a problem with cdrecord completion
2004-08-07 Oliver Kiddle <opk@zsh.org>
* 20237: Completion/Unix/Command/_screen: rewrite completion of

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