zsh-workers
 help / color / mirror / code / Atom feed
c393731175d01cd0338aeb9242f43edfbe66f752 blob 546 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
 
#compdef fsh

local curcontext="$curcontext" state line ret=1
local -a _comp_priv_prefix

_arguments -C \
  '(- : *)'{-h,--help}'[display help information]' \
  '(- : *)'{-V,--version}'[display version information]' \
  '-r[specify method]:method:(rsh ssh)' \
  '-l[specify login id]:login:_users' \
  '(-T --timeout)'{-T,--timeout}':idle timeout:' \
  ':remote host name:_hosts' \
  '(-):command: _command_names -e' \
  '*::args:->command' && ret=0

if [[ -n "$state" ]]; then
  shift 1 words
  (( CURRENT-- ))
  _normal && ret=0
fi

return ret
debug log:

solving c393731 ...
found c393731 in https://git.vuxu.org/mirror/zsh/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).