Files
vasilito facf0c92e0 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

17 lines
527 B
Plaintext

#compdef zed fned histed
case $service in
(fned) _arguments -S : ':shell function:_functions';;
(histed) _arguments -S : \
'1:history file:_files' \
'2:history size: ';;
(zed) _arguments -S : \
'(-h 1 3 4)-f[edit function]' \
'(-h 1 3 4)-x+[specify spaces to use for indentation in function expansion]:spaces' \
'(-f -x 1 2)-h[edit history]' \
'(- 2 3 4)1:file:_files' \
'(3 4)2:shell function:_functions' \
'3:history file:_files -g "*(D)"' \
'4:history size';;
esac