Files
RedBear-OS/recipes/shells/zsh/source/Completion/Zsh/Command/_zpty
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

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