mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 10:01:11 +02:00
23271: Pete Hollobon: completion for sqsh
This commit is contained in:
parent
fc615adad7
commit
69211ed83a
3 changed files with 59 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-04-13 Peter Stephenson <pws@csr.com>
|
||||
|
||||
* 23271: Pete Hollobon: Completion/Unix/Command/_sqsh,
|
||||
Completion/Unix/Command/.distfiles: new completion.
|
||||
|
||||
2007-04-12 Peter Stephenson <pws@csr.com>
|
||||
|
||||
* 23270: Src/system.h: #define _STRPTIME_DONTZERO to get Solaris
|
||||
|
|
|
@ -35,6 +35,7 @@ _darcs _ifconfig _netcat _sisu _xmlsoft
|
|||
_date _imagemagick _nice _slrn _yafc
|
||||
_dd _init_d _nmap _socket _yodl
|
||||
_dhclient _ip _nslookup _spamassassin _yp
|
||||
_sqsh
|
||||
_dict _irssi _pack _ssh _zcat
|
||||
_diff _ispell _patch _strip _zdump
|
||||
_diffstat _java _pax _stty _zip
|
||||
|
|
53
Completion/Unix/Command/_sqsh
Normal file
53
Completion/Unix/Command/_sqsh
Normal file
|
@ -0,0 +1,53 @@
|
|||
#compdef sqsh
|
||||
|
||||
_sybase_server() {
|
||||
local interfaces
|
||||
|
||||
if [[ -n "$opt_args[-I]" ]]; then
|
||||
interfaces=${(e)~opt_args[-I]:Q}
|
||||
elif [[ -n "$opt_args[-y]" ]]; then
|
||||
interfaces=${(e)~opt_args[-y]:Q}/interfaces
|
||||
else
|
||||
interfaces=$SYBASE/interfaces
|
||||
fi
|
||||
|
||||
[[ -f $interfaces ]] && compadd ${${(f)"$(<$interfaces)"}:#[[:space:]#]*}
|
||||
}
|
||||
|
||||
_arguments : \
|
||||
'-A[Adjust TDS packet size (512)]:packet size (bytes):(512 1024
|
||||
1536 2048)' \
|
||||
'-B[Turn off file buffering on startup]' \
|
||||
'-C[Send sql statment to server]:sql' \
|
||||
'-D[Change database context on startup]:database' \
|
||||
'-E[Replace default editor (vi)]:editor' \
|
||||
'-H[Set the client hostname]:reported hostname' \
|
||||
'-I[Alternate interfaces file]:interface file:_files' \
|
||||
'-J[Client character set]:charset' \
|
||||
'*-L[Set the value of a given variable]:variable=value' \
|
||||
'-P[Sybase password (NULL)]:password' \
|
||||
'-S[Name of Sybase server (\$DSQUERY)]:_sybase_server' \
|
||||
'-U[Name of Sybase user]:username' \
|
||||
'-X[Enable client password encryption]' \
|
||||
'-a[Max. # of errors before abort]:number' \
|
||||
'-b[Suppress banner message on startup]' \
|
||||
'*-c[Alias for the ''go'' command]:go alias' \
|
||||
'-d[Min. severity level to display]:severity level (0-22)' \
|
||||
'-e[Echo batch prior to executing]' \
|
||||
'-f[Min. severity level for failure]:failure severity' \
|
||||
'-h[Disable headers and footers]' \
|
||||
'-i[Read input from file]:_files' \
|
||||
'-k[Specify alternate keywords file]:_files' \
|
||||
'-l[Set debugging level]' \
|
||||
'-m[Set display mode (normal)]:display style:(horiz vert bcp html
|
||||
meta pretty none)' \
|
||||
'-n[Set chained transaction mode]:chained transaction mode:(on off)' \
|
||||
'-o[Direct all output to file]:_files' \
|
||||
'-p[Display performance stats]' \
|
||||
'-r[Specify name of .sqshrc]:_files' \
|
||||
'-s[Alternate column separator (\t)]:column separator' \
|
||||
'-t[Filter batches through program]:filter program:_files -g "*(*)"' \
|
||||
'-v[Display current version and exit]' \
|
||||
'-w[Adjust result display width]:number' \
|
||||
'-y[Override value of $SYBASE]:_directories' \
|
||||
'-z[Alternate display language]:language' \
|
Loading…
Reference in a new issue