zshlibs/global/global_fpath_expand
2024-01-18 19:32:40 +04:00

8 lines
153 B
Plaintext

function global_fpath_expand()
{
local bin_base=${globaldots_path}/bin
for pathnew in ${*}; do
zshlibs_fpath_add "${bin_base}/${pathnew}"
done;
}