diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:27:58 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:27:58 +0000 |
commit | 74e6e0444a11f02d62a7634976f7abd2c4c8bd1c (patch) | |
tree | 18bcb037a489e47312dcc36faea111583d321c2a /Completion | |
parent | 7ba9f7f8ba098fe8d7ef017db44e0419f409c9af (diff) | |
download | zsh-74e6e0444a11f02d62a7634976f7abd2c4c8bd1c.tar.gz zsh-74e6e0444a11f02d62a7634976f7abd2c4c8bd1c.tar.xz zsh-74e6e0444a11f02d62a7634976f7abd2c4c8bd1c.zip |
moved from Completion/Builtins/_emulate
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Zsh/Command/_emulate | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Completion/Zsh/Command/_emulate b/Completion/Zsh/Command/_emulate new file mode 100644 index 000000000..e562d6834 --- /dev/null +++ b/Completion/Zsh/Command/_emulate @@ -0,0 +1,6 @@ +#compdef emulate + +_arguments -C -s -A "-*" \ + '-L[set local_options and local_traps as well]' \ + '-R[reset all options instead of only those needed for script portability]' \ + '::shell to emulate:(zsh sh ksh csh)' |