1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-22 03:40:47 +02:00
zsh/Completion/Zsh/Command/_zpty

63 lines
2.0 KiB
Plaintext

#compdef zpty
local state line list names expl sep curcontext="$curcontext"
typeset -A opt_args
_arguments -C -s -S \
'(-r -w -t -n -L -d)-e[echo input characters]' \
'(-r -w -t -n -L -d)-b[io to pseudo-terminal blocking]' \
'(-r -w -t -n -L -e -b)-d[delete command]:*:name:->name' \
'(-r -L -t -e -b -d)-w[send string to command]:name:->name:*:strings to write' \
'(-r -L -t -e -b -d)-n[do not add a newline to the result]' \
'(: -r -w -t -n -e -b -d)-L[list defined commands as calls]' \
'(: -w -n -L -e -b -d)-r[read string from command]:name:->name:param: _vars:pattern:' \
'(: -w -n -L -e -b -d)-t[test if output is available before reading]' \
'(-r -w -t -n -L -d):zpty command name:' \
'(-r -w -t -n -L -d):cmd: _command_names -e' \
'(-r -w -t -n -L -d)*::args:_precommand' && return 0
# One could use sets, but that's more expensive and zpty is simple enough.
#
# _arguments -C -s -S \
# - read \
# '-r[read string from command]' \
# '-t[test if output is available first]' \
# ':name:->name' \
# ':param: _vars' \
# ':pattern:' \
# - write \
# '-w[send string to command]' \
# '-n[do not add a newline to the result]' \
# ':name:->name' \
# '*:strings to write' \
# - list \
# '-L[list defined commands as calls]' \
# - delete \
# '-d[delete command]' \
# '*:name:->name' \
# - start \
# '-e[echo input characters]' \
# '-b[io to pseudo-terminal blocking]' \
# ':zpty command name:' \
# ':cmd: _command_names -e' \
# '*::args:_precommand' && return 0
if [[ $state = name ]]; then
if ! zmodload -e zsh/zpty; then
_message "zpty module not loaded"
return 1
fi
list=( ${${(f)"$(zpty)"}#*\) } )
names=( ${list%%:*} )
if zstyle -T ":completion:${curcontext}:" verbose; then
zstyle -s ":completion:${curcontext}:" list-separator sep || sep=--
zformat -a list " $sep" ${${(f)"$(zpty)"}#*\) }
_wanted names expl 'zpty command name' compadd -d list -a names
else
_wanted names expl 'zpty command name' compadd -a names
fi
else
return 1
fi