diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:22:55 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:22:55 +0000 |
commit | 3c52ac240a8accdbcaa30974c935c4cf71e96250 (patch) | |
tree | 281a003cb1259c85aa1999c66bb65207fafecc48 | |
parent | 3522f637da25a40dd23abb075e2f0c308105c72b (diff) | |
download | zsh-3c52ac240a8accdbcaa30974c935c4cf71e96250.tar.gz zsh-3c52ac240a8accdbcaa30974c935c4cf71e96250.tar.xz zsh-3c52ac240a8accdbcaa30974c935c4cf71e96250.zip |
moved from Completion/Base/_equal
-rw-r--r-- | Completion/Zsh/Context/_equal | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Completion/Zsh/Context/_equal b/Completion/Zsh/Context/_equal new file mode 100644 index 000000000..4150fe629 --- /dev/null +++ b/Completion/Zsh/Context/_equal @@ -0,0 +1,9 @@ +#compdef -equal- + +local args + +args=( "$@" ) + +_alternative -O args \ + 'commands:command:compadd -k commands' \ + 'aliases:alias:compadd -k aliases' |