diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:19:47 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:19:47 +0000 |
commit | 24415b2cc98c159a0113ce01cf8d85059b210d99 (patch) | |
tree | 7e0514f4d3edfcfb4dbaee7f44fbffeb4733b388 | |
parent | 691f6a2ca941342a9670900672dcfd59eed57789 (diff) | |
download | zsh-24415b2cc98c159a0113ce01cf8d85059b210d99.tar.gz zsh-24415b2cc98c159a0113ce01cf8d85059b210d99.tar.xz zsh-24415b2cc98c159a0113ce01cf8d85059b210d99.zip |
moved from Completion/Core/_options
-rw-r--r-- | Completion/Zsh/Type/_options | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Completion/Zsh/Type/_options b/Completion/Zsh/Type/_options new file mode 100644 index 000000000..351220bde --- /dev/null +++ b/Completion/Zsh/Type/_options @@ -0,0 +1,8 @@ +#autoload + +# This should be used to complete all option names. + +local expl + +_wanted zsh-options expl 'zsh option' \ + compadd "$@" -M 'B:[nN][oO]= M:_= M:{A-Z}={a-z}' -k options |