diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-09-22 12:53:49 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-09-22 12:53:49 +0000 |
commit | c17448c2765f64df856d6f0d620d410c32a734b9 (patch) | |
tree | 677461a6d709ff3216ef17a4b34f85d2bda472a7 /Doc/Zsh | |
parent | eda0e496969f1eb06eec47501fce74f608d34704 (diff) | |
download | zsh-c17448c2765f64df856d6f0d620d410c32a734b9.tar.gz zsh-c17448c2765f64df856d6f0d620d410c32a734b9.tar.xz zsh-c17448c2765f64df856d6f0d620d410c32a734b9.zip |
zsh-workers/7959
Diffstat (limited to 'Doc/Zsh')
-rw-r--r-- | Doc/Zsh/compsys.yo | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo index 36c148404..fe56f47df 100644 --- a/Doc/Zsh/compsys.yo +++ b/Doc/Zsh/compsys.yo @@ -1153,6 +1153,29 @@ An array holding the names of the groups that should be completed. If this is not set by the user, it will automatically be set to a list of group names taken from the YP database or the file `tt(/etc/group)'. ) +item(tt(hosts))( +An array holding the names of hosts that should be completed. If this +is not set by the user it will automatically be set to a list of the +hostnames in `tt(/etc/hosts)'. +) +item(tt(ports))( +An array holding the service names of ports to complete. If this is +not set by the user, it will be set to a list of the service names +from `tt(/etc/services)'. +) +item(tt(telnet_hosts_ports_users))( +This array is used by the completion function for tt(telnet). It +should contain elements of the form +`var(host)tt(:)var(port)tt(:)var(user)'. These triples will be used to +complete names of hosts, ports, and usernames depending on the +information already on the line, so that if, for example, the hostname +is already typed, only those ports and usernames will be completed for +which triples with the hostname from the line exist. +) +item(tt(socket_hosts_ports))( +Like tt(telnet_hosts_ports_users), but used for the tt(socket) command +and containing pairs of hostnames and ports. +) enditem() subsect(Configuration keys) |