diff options
Diffstat (limited to 'Completion/Cygwin/Command/_cygserver')
-rw-r--r-- | Completion/Cygwin/Command/_cygserver | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Completion/Cygwin/Command/_cygserver b/Completion/Cygwin/Command/_cygserver new file mode 100644 index 000000000..413333abf --- /dev/null +++ b/Completion/Cygwin/Command/_cygserver @@ -0,0 +1,13 @@ +#compdef cygserver cygserver.exe +#Generated by Felix Rosencrantz + +local context state line +typeset -A opt_args +_arguments \ + '(--cleanup-threads -c)'{-c,--cleanup-threads}'[number of cleanup threads to use]' \ + '(--help -h)'{-h,--help}'[output usage information and exit]' \ + '(--request-threads -r)'{-r,--request-threads}'[number of request threads to use]' \ + '(--shutdown -s)'{-s,--shutdown}'[shutdown the daemon]' \ + '(--version -v)'{-v,--version}'[output version information and exit]' \ + '*: :_files' + |