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

19 lines
805 B
Plaintext

#compdef zmv zln zcp
_arguments -s -S -A '-*' \
'(-C -L -s -p)-M[force mv]' \
'(-M -L -s -p)-C[force cp]' \
'(-M -C -p)-L[force ln]' \
'-f[force overwriting of destination files]' \
'-i[interactive: prompt for each operation]' \
'-n[no execution: just print what would happen]' \
'-Q[force bare glob qualifiers on]' \
'(-C -M)-s[symbolic, passed down to ln]' \
'-v[verbose: print line as it is executed]' \
'-o[specify options to pass to underlying command]: opt string' \
'(-M -C -L -s)-p+[specify program to run instead of cp, ln or mv]:program:_command_names -e' \
'(-W)-w[implicitly add parenthesis to wildcards in the pattern]' \
'(-w)-W[like -w, but turn wildcards in replacement patterns into references]' \
'1:source pattern:_files' \
'2:destination pattern:_files'