zshlibs/global/global_path_expand

8 lines
151 B
Plaintext
Raw Normal View History

2024-01-18 15:32:40 +00:00
function global_path_expand()
{
local bin_base=${globaldots_path}/bin
for pathnew in ${*}; do
zshlibs_path_add "${bin_base}/${pathnew}"
done;
}