facf0c92e0
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.
18 lines
418 B
Plaintext
18 lines
418 B
Plaintext
# pushd function to emulate the old zsh behaviour. With this function
|
|
# pushd +/-n just lifts the selected element to the top of the stack
|
|
# instead of just cycling the stack.
|
|
|
|
local puid
|
|
[[ -o pushdignoredups ]] && puid=1
|
|
|
|
emulate -R zsh
|
|
setopt localoptions
|
|
|
|
if [[ ARGC -eq 1 && "$1" == [+-]<-> ]] then
|
|
setopt pushdignoredups
|
|
builtin pushd ~$1
|
|
else
|
|
[[ -n $puid ]] && setopt pushdignoredups
|
|
builtin pushd "$@"
|
|
fi
|