X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/9a1960b5edade792e0d4d9a8c8e0630e774affc5..87db11e46a91f3e9478fcd02105b72470ef0e5ba:/.zsh/zshrc/00_autoload diff --git a/.zsh/zshrc/00_autoload b/.zsh/zshrc/00_autoload index 6098311..3c7b95a 100644 --- a/.zsh/zshrc/00_autoload +++ b/.zsh/zshrc/00_autoload @@ -8,8 +8,23 @@ # Source repository: http://git.madduck.net/v/etc/zsh.git # -# for p ($fpath) for fn ($p/**) autoload ${fn##*/} -autoload $^fpath/*(.xN:t) -autoload zargs +# autoload all executable files in $fpath +autoload -U $^fpath/*(.xN:t) + +# smart xargs replacement +autoload -U zargs + +# programmable moving, copying, and linking +autoload -U zmv + +# make color arrays available +autoload -U colors ; colors + +# use shell builtins for standard file operations +# disabled due to #479764 +#zmodload zsh/files + +# allow zwc file recompiling +autoload -U zrecompile # vim:ft=zsh