8 lines
153 B
Plaintext
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;
|
|
}
|