zshlibs/global/global_fpath_expand

8 lines
153 B
Plaintext
Raw Permalink Normal View History

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