diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2001-08-07 11:28:12 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2001-08-07 11:28:12 +0000 |
commit | 6cd11094d9d79e9bb234a60503e65c595766c29a (patch) | |
tree | 16746eb957ed3b191e50e25b47e40685019b8a30 /Completion/Zsh/Context | |
parent | b0ac280e1aee61f007f161c8bd9bcc31c101aadf (diff) | |
download | zsh-6cd11094d9d79e9bb234a60503e65c595766c29a.tar.gz zsh-6cd11094d9d79e9bb234a60503e65c595766c29a.tar.xz zsh-6cd11094d9d79e9bb234a60503e65c595766c29a.zip |
do not complete aliases in equals expansion any more (15590)
Diffstat (limited to 'Completion/Zsh/Context')
-rw-r--r-- | Completion/Zsh/Context/_equal | 8 |
1 files changed, 1 insertions, 7 deletions
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 |