diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Zsh/Context/_equal | 8 |
2 files changed, 6 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog index a86f71588..04eab98ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-08-07 Oliver Kiddle <opk@zsh.org> + + * 15590: Completion/Zsh/Context/_equal: after 15586, we no + longer want to complete aliases in the equal context + 2001-08-07 Sven Wischnowsky <wischnow@zsh.org> * 15588: Completion/Base/Completer/_approximate, diff --git a/Completion/Zsh/Context/_equal b/Completion/Zsh/Context/_equal index 4150fe629..b4d911541 100644 --- a/Completion/Zsh/Context/_equal +++ b/Completion/Zsh/Context/_equal @@ -1,9 +1,3 @@ #compdef -equal- -local args - -args=( "$@" ) - -_alternative -O args \ - 'commands:command:compadd -k commands' \ - 'aliases:alias:compadd -k aliases' +_wanted commands expl command compadd -k commands |