ZSH: Restructured path settings

This commit is contained in:
Christian Baer 2024-10-28 22:28:56 +01:00
parent 360e82abe9
commit 7014435399

View File

@ -7,7 +7,6 @@ _prepath() {
for dir in "$@"; do for dir in "$@"; do
dir=${dir:A} dir=${dir:A}
[[ ! -d "$dir" ]] && return [[ ! -d "$dir" ]] && return
#path=("$dir" $path[@])
path=("$dir" $path) path=("$dir" $path)
done done
} }