about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorFelix Rosencrantz <f_rosencrantz@users.sourceforge.net>2003-04-07 11:23:14 +0000
committerFelix Rosencrantz <f_rosencrantz@users.sourceforge.net>2003-04-07 11:23:14 +0000
commitf4b280d7779050d9b844c5add3f3e179e46333d3 (patch)
treea82ee65e770dbc8d13331927c4b93e5fea8c6d5e /Completion
parent06b04ca1b2d7dcbc77787a248241c6968808d40c (diff)
downloadzsh-f4b280d7779050d9b844c5add3f3e179e46333d3.tar.gz
zsh-f4b280d7779050d9b844c5add3f3e179e46333d3.tar.xz
zsh-f4b280d7779050d9b844c5add3f3e179e46333d3.zip
Added completion functions for cygwin
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Cygwin/Command/_cygcheck14
-rw-r--r--Completion/Cygwin/Command/_cygpath33
-rw-r--r--Completion/Cygwin/Command/_cygrunsrv39
-rw-r--r--Completion/Cygwin/Command/_cygserver13
-rw-r--r--Completion/Cygwin/Command/_cygstart30
-rw-r--r--Completion/Cygwin/Command/_dumper13
-rw-r--r--Completion/Cygwin/Command/_getclip13
-rw-r--r--Completion/Cygwin/Command/_getfacl12
-rw-r--r--Completion/Cygwin/Command/_mkshortcut24
-rw-r--r--Completion/Cygwin/Command/_mkzsh10
-rw-r--r--Completion/Cygwin/Command/_pscp24
-rw-r--r--Completion/Cygwin/Command/_putclip12
12 files changed, 237 insertions, 0 deletions
diff --git a/Completion/Cygwin/Command/_cygcheck b/Completion/Cygwin/Command/_cygcheck
new file mode 100644
index 000000000..d0a78a248
--- /dev/null
+++ b/Completion/Cygwin/Command/_cygcheck
@@ -0,0 +1,14 @@
+#compdef cygcheck cygcheck.exe
+#Generated by Felix Rosencrantz
+
+local context state line
+typeset -A opt_args
+_arguments  \
+  '(--check-setup --help -c -h)'{-c,--check-setup}'[check packages installed via setup.exe]' \
+  '(--keycheck --sysinfo -k -s)'{-s,--sysinfo}'[system information (not with -k)]' \
+  '(--verbose -v)'{-v,--verbose}'[verbose output (indented) (for -s or programs)]' \
+  '(--registry -r)'{-r,--registry}'[registry search (requires -s)]' \
+  '(--keycheck --sysinfo -k -s)'{-k,--keycheck}'[perform a keyboard check session (not with -s)]' \
+  '(--check-setup --help -c -h)'{-h,--help}'[give help about the info (not with -c)]' \
+  '(--version -V)'{-V,--version}'[output version information and exit]' \
+  '*:program: _command_names -e:*::program arguments: _normal'
diff --git a/Completion/Cygwin/Command/_cygpath b/Completion/Cygwin/Command/_cygpath
new file mode 100644
index 000000000..570639e6c
--- /dev/null
+++ b/Completion/Cygwin/Command/_cygpath
@@ -0,0 +1,33 @@
+#compdef cygpath cygpath.exe
+#Generated by Felix Rosencrantz
+
+local context state line
+typeset -A opt_args
+_arguments  \
+  '(--dos --mixed --type --unix --windows -d -m -t -u -w)'{-d,--dos}'[print DOS (short) form of NAME (C:\PROGRA~1\)]' \
+  '(--dos --mixed --type --unix --windows -d -m -t -u -w)'{-m,--mixed}'[like --windows, but with regular slashes (C:/WINNT)]' \
+  '(--dos --mixed --type --unix --windows -d -m -t -u -w)'{-u,--unix}'[(default) print Unix form of NAME (/cygdrive/c/winnt)]' \
+  '(--dos --mixed --type --unix --windows -d -m -t -u -w)'{-w,--windows}'[print Windows form of NAME (C:\WINNT)]' \
+  "(--dos --mixed --type --unix --windows -d -m -t -u -w)"{-t,--type}":print TYPE form\: 'dos', 'mixed', 'unix', or 'windows':(dos mixed unix windows)" \
+  '(--absolute --long-name --path --short-name -a -l -p -s)'{-a,--absolute}'[output absolute path]' \
+  '(--absolute --long-name --path --short-name -a -l -p -s)'{-l,--long-name}'[print Windows long form of NAME (with -w, -m only)]' \
+  "(--absolute --long-name --path --short-name -a -l -p -s)"{-p,--path}"[NAME is a PATH list (i.e., '/bin:/usr/bin')]" \
+  '(--absolute --long-name --path --short-name -a -l -p -s)'{-s,--short-name}'[print DOS (short) form of NAME (with -w, -m only)]' \
+  "(--allusers -A)"{-A,--allusers}"[use 'All Users' instead of current user for -D, -P]" \
+  "(--desktop --homeroot --smprograms --sysdir --windir -D -H -P -S -W)"{-D,--desktop}"[output 'Desktop' directory and exit]" \
+  "(--desktop --homeroot --smprograms --sysdir --windir -D -H -P -S -W)"{-H,--homeroot}"[output 'Profiles' directory (home root) and exit]" \
+  "(--desktop --homeroot --smprograms --sysdir --windir -D -H -P -S -W)"{-P,--smprograms}"[output Start Menu 'Programs' directory and exit]" \
+  '(--desktop --homeroot --smprograms --sysdir --windir -D -H -P -S -W)'{-S,--sysdir}'[output system directory and exit]' \
+  "(--desktop --homeroot --smprograms --sysdir --windir -D -H -P -S -W)"{-W,--windir}"[output 'Windows' directory and exit]" \
+  '(--file -f)'{-f,--file}':read FILE for input; use - to read from STDIN:_files' \
+  '(--option -o)'{-o,--option}'[read options from FILE as well (for use with --file)]' \
+  '(--close -c)'{-c,--close}':close HANDLE (for use in captured process):->HANDLE' \
+  '(--ignore -i)'{-i,--ignore}'[ignore missing argument]' \
+  '(--help -h)'{-h,--help}'[output usage information and exit]' \
+  '(--version -v)'{-v,--version}'[output version information and exit]' \
+  '1: :_files'  && return 0
+            
+case $state in
+  "HANDLE");;
+esac
+    
diff --git a/Completion/Cygwin/Command/_cygrunsrv b/Completion/Cygwin/Command/_cygrunsrv
new file mode 100644
index 000000000..08c23058e
--- /dev/null
+++ b/Completion/Cygwin/Command/_cygrunsrv
@@ -0,0 +1,39 @@
+#compdef cygrunsrv cygrunsrv.exe
+#Generated by Felix Rosencrantz
+
+local context state line
+typeset -A opt_args
+_arguments  \
+  '(--install -I)'{-I,--install}':Installes a new service named <svc_name>.:->svc_name' \
+  '(--remove -R)'{-R,--remove}':Removes a service named <svc_name>.:->svc_name' \
+  '(--start -S)'{-S,--start}':Starts a service named <svc_name>.:->svc_name' \
+  '(--stop -E)'{-E,--stop}':Stops a service named <svc_name>.:->svc_name' \
+  '(--path -p)'{-p,--path}':Application path which is run as a service.:->app_path' \
+  '(--args -a)'{-a,--args}':Optional string with command line options which is given to the service application on startup.:->args' \
+  '(--chdir -c)'{-c,--chdir}':Optional directory which will be used as working directory for the application.:_directories' \
+  '(--env -e)'{-e,--env}':Optional environment strings which are added to the environment when service is started. You can add up to 255 environment strings using:->VAR=VALUE' \
+  '(--disp -d)'{-d,--disp}':Optional string which contains the display name of the service. Defaults to service name.:->display_name' \
+  '(--desc -f)'{-f,--desc}':Optional string which contains the service description.:->description' \
+  "(--type -t)"{-t,--type}"[Optional start type of service. Defaults to 'auto'.]: :(auto manual)" \
+  '(--user -u)'{-u,--user}':Optional user name to start service as. Defaults to SYSTEM account.:_users' \
+  '(--passwd -w)'{-w,--passwd}':Optional password for user. Only needed if a user is given. If a user has an empty:->password' \
+  '(--termsig -s)'{-s,--termsig}':Optional signal to send to service application when service is stopped. <signal> can be a number or a signal name such as HUP, INT, QUIT, etc. Default is TERM.:_signals' \
+  '(--dep -y)'{-y,--dep}':Optional name of service that must be started:->svc_name2' \
+  '(--stdin -0)'{-0,--stdin}':Optional input file used for stdin redirection. Default is /dev/null.:_files' \
+  '(--stdout -1)'{-1,--stdout}':Optional output file used for stdout redirection. Default is /var/log/<svc_name>.log.:_files' \
+  '(--stderr -2)'{-2,--stderr}':Optional output file used for stderr redirection. Default is /var/log/<svc_name>.log.:_files' \
+  '(--shutdown -o)'{-o,--shutdown}'[Stop service application during system shutdown.]' \
+  '(--help -h)'{-h,--help}'[print this help, then exit.]' \
+  '(--version -v)'{-v,--version}'[print cygrunsrv program version number, then exit.]' \
+  '*: :_files'  && return 0
+            
+case $state in
+  "VAR=VALUE");;
+  "app_path");;
+  "args");;
+  "description");;
+  "display_name");;
+  "password");;
+  "svc_name");;
+  "svc_name2");;
+esac
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'
+            
diff --git a/Completion/Cygwin/Command/_cygstart b/Completion/Cygwin/Command/_cygstart
new file mode 100644
index 000000000..5cc54a6e4
--- /dev/null
+++ b/Completion/Cygwin/Command/_cygstart
@@ -0,0 +1,30 @@
+#compdef cygstart cygstart.exe
+#Generated by Felix Rosencrantz
+
+local context state line
+typeset -A opt_args
+_arguments  \
+  '(--action -a)'{-a,--action=-}':Use specified action instead of default:(open edit explore print find)' \
+  '(--open -o)'{-o,--open}'[Short for: --action open]' \
+  '(--explore -x)'{-x,--explore}'[Short for: --action explore]' \
+  '(--edit -e)'{-e,--edit}'[Short for: --action edit]' \
+  '(--find -f)'{-f,--find}'[Short for: --action find]' \
+  '(--print -p)'{-p,--print}'[Short for: --action print]' \
+  '(--directory -d)'{-d,--directory=-}':Set working directory:_directories' \
+  '--hide[Hides the window and activates another window]' \
+  '--maximize[Maximizes the specified window]' \
+  '--minimize[Minimizes the specified window and activates the next top-level window in the z-order]' \
+  '--restore[Activates and displays the window. If the window is minimized or maximized, Windows restores it to its original size and position. An application should specify this flag when restoring a minimized window]' \
+  '--show[Activates the window and displays it in its current size and position]' \
+  '--showmaximized[Activates the window and displays it as a maximized window]' \
+  '--showminimized[Activates the window and displays it as a minimized window]' \
+  '--showminnoactive[Displays the window as a minimized window. The active window remains active]' \
+  '--showna[Displays the window in its current state. The active window remains active]' \
+  '--shownoactivate[Displays a window in its most recent size and position. The active window remains active]' \
+  '--shownormal[Activates and displays a window. If the window is minimized or maximized, Windows restores it to its original size and position. An application should specify this flag when displaying the window for the first time]' \
+  '(--help -?)'{'-?',--help}'[Show this help message]' \
+  '--usage[Display brief usage message]' \
+  '--version[Display version information]' \
+  '--license[Display licensing information]' \
+  '--reference[Open MSDN reference for ShellExecute]' \
+  '*:program: _command_names -e:*::program arguments: _normal'
diff --git a/Completion/Cygwin/Command/_dumper b/Completion/Cygwin/Command/_dumper
new file mode 100644
index 000000000..bcee4042b
--- /dev/null
+++ b/Completion/Cygwin/Command/_dumper
@@ -0,0 +1,13 @@
+#compdef dumper dumper.exe
+#Generated by Felix Rosencrantz
+
+local context state line
+typeset -A opt_args
+_arguments   \
+  '(--verbose -d)'{-d,--verbose}'[be verbose while dumping]' \
+  '(--help -h)'{-h,--help}'[output help information and exit]' \
+  '(--quiet -q)'{-q,--quiet}'[be quiet while dumping (default)]' \
+  '(--version -v)'{-v,--version}'[output version information and exit]' \
+  '1: :_file' \
+  '*: :_pids'
+            
diff --git a/Completion/Cygwin/Command/_getclip b/Completion/Cygwin/Command/_getclip
new file mode 100644
index 000000000..0cb7b093f
--- /dev/null
+++ b/Completion/Cygwin/Command/_getclip
@@ -0,0 +1,13 @@
+#compdef getclip getclip.exe
+#Generated by Felix Rosencrantz
+
+local context state line
+typeset -A opt_args
+_arguments \
+  '(--dos -d)'{-d,--dos}'[Output text will have DOS line endings.]' \
+  '(--unix -u)'{-u,--unix}'[Output text will have UNIX line endings.]' \
+  '(--help -?)'{'-?',--help}'[Show this help message]' \
+  '--usage[Display brief usage message]' \
+  '--version[Display version information]' \
+  '--license[Display licensing information]'
+            
diff --git a/Completion/Cygwin/Command/_getfacl b/Completion/Cygwin/Command/_getfacl
new file mode 100644
index 000000000..a0adf6866
--- /dev/null
+++ b/Completion/Cygwin/Command/_getfacl
@@ -0,0 +1,12 @@
+#compdef getfacl getfacl.exe
+#Generated by Felix Rosencrantz
+
+local context state line
+typeset -A opt_args
+_arguments  \
+  '(--all -a)'{-a,--all}'[display the filename, the owner, the group, and the ACL of the file]' \
+  '(--dir -d)'{-d,--dir}'[display the filename, the owner, the group, and the default ACL of the directory, if it exists]' \
+  '(--help -h)'{-h,--help}'[output usage information and exit]' \
+  '(--noname -n)'{-n,--noname}'[display user and group IDs instead of names]' \
+  '(--version -v)'{-v,--version}'[output version information and exit]' \
+  '*: :_files'
diff --git a/Completion/Cygwin/Command/_mkshortcut b/Completion/Cygwin/Command/_mkshortcut
new file mode 100644
index 000000000..2a9d558aa
--- /dev/null
+++ b/Completion/Cygwin/Command/_mkshortcut
@@ -0,0 +1,24 @@
+#compdef mkshortcut mkshortcut.exe
+#Generated by Felix Rosencrantz
+
+local context state line
+typeset -A opt_args
+_arguments  \
+  '(--arguments -a)'{-a,--arguments=-}':Use arguments ARGS:->ARGS' \
+  '(--icon -i)'{-i,--icon=-}':icon file for link to use:_files' \
+  '(--iconoffset -j)'{-j,--iconoffset=-}':offset of icon in icon file (default is 0):->INT' \
+  '(--name -n)'{-n,--name=-}':name for link (defaults to TARGET):_files' \
+  "(--allusers -A)"{-A,--allusers}"[use 'All Users' instead of current user for -D,-P]" \
+  "(--desktop -D)"{-D,--desktop}"[create link relative to 'Desktop' directory]" \
+  "(--smprograms -P)"{-P,--smprograms}"[create link relative to Start Menu 'Programs' directory]" \
+  '(--help -h)'{-h,--help}'[Show this help message]' \
+  '--usage[Display brief usage message]' \
+  '(--version -v)'{-v,--version}'[Display version information]' \
+  '--license[Display licensing information]' \
+  '1:Target:_files'  && return 0
+            
+case $state in
+  "ARGS");;
+  "INT");;
+esac
+    
diff --git a/Completion/Cygwin/Command/_mkzsh b/Completion/Cygwin/Command/_mkzsh
new file mode 100644
index 000000000..2a31e12bc
--- /dev/null
+++ b/Completion/Cygwin/Command/_mkzsh
@@ -0,0 +1,10 @@
+#compdef mkzsh mkzsh.exe
+#Generated by Felix Rosencrantz
+
+local context state line
+typeset -A opt_args
+_arguments \
+  '(--allusers -A)'{-A,--allusers}'[creates item for All Users instead of just current user]' \
+  '(--desktop -D)'{-D,--desktop}'[creates a Desktop icon for running /zsh.bat]' \
+  '(--smprograms -P)'{-P,--smprograms}'[creates a Program menu item for running /zsh.bat]' \
+  '(--help -h)'{-h,--help}'[prints usage]'
diff --git a/Completion/Cygwin/Command/_pscp b/Completion/Cygwin/Command/_pscp
new file mode 100644
index 000000000..f04afb8d1
--- /dev/null
+++ b/Completion/Cygwin/Command/_pscp
@@ -0,0 +1,24 @@
+#compdef pscp pscp.exe
+#Generated by Felix Rosencrantz
+
+local context state line
+typeset -A opt_args
+_arguments  \
+  '-p[preserve file attributes]' \
+  "-q[quiet, don't show statistics]" \
+  '-r[copy directories recursively]' \
+  '-v[show verbose messages]' \
+  '-load:Load settings from saved session:->sessname' \
+  '-P:connect to specified port:_ports' \
+  '-l:connect with specified username:_users' \
+  '-pw[passw login with specified password]' \
+  '(-1 -2)'{-1,-2}'[force use of particular SSH protocol version]' \
+  '-C[enable compression]' \
+  '-i:private key file for authentication:_files' \
+  '-batch[disable all interactive prompts]' \
+  '-unsafe[allow server-side wildcards (DANGEROUS)]' \
+  '*: :_files'  && return 0
+            
+case $state in
+  "sessname");;
+esac
diff --git a/Completion/Cygwin/Command/_putclip b/Completion/Cygwin/Command/_putclip
new file mode 100644
index 000000000..db61f438d
--- /dev/null
+++ b/Completion/Cygwin/Command/_putclip
@@ -0,0 +1,12 @@
+#compdef putclip putclip.exe
+#Generated by Felix Rosencrantz
+
+local context state line
+typeset -A opt_args
+_arguments \
+  '(--dos -d)'{-d,--dos}'[Clipboard text will have DOS line endings.]' \
+  '(--unix -u)'{-u,--unix}'[Clipboard text will have UNIX line endings.]' \
+  '(--help -?)'{'-?',--help}'[Show this help message]' \
+  '--usage[Display brief usage message]' \
+  '--version[Display version information]' \
+  '--license[Display licensing information]'