Files
RedBear-OS/recipes/shells/zsh/source/Completion/Unix/Command/_entr
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

27 lines
772 B
Plaintext

#compdef entr
local curcontext="$curcontext" state state_descr line ret=1
typeset -A opt_args
_arguments -s -S \
'(-r)-a[respond to all events rather than consolidating them to avoid looping]' \
'-c[execute clear before invoking utility]' \
'-d[track directories and exit if a new file is added]' \
"-n[non-interactive mode; don't access TTY]" \
'-p[postpone first execution of the utility]' \
'(-a)-r[reload a persistent child process]' \
'(*)-s[evaluate the first argument using interpreter specified by $SHELL]' \
'-z[exit after the utility completes]' \
'(-): :->command' \
'*::arguments:_normal' && ret=0
if [[ -n $state ]]; then
if (( $+opt_args[-s] )); then
_cmdstring && ret=0
else
_command_names -e && ret=0
fi
fi
return ret