diff --git a/zsh/func/do_init_functions b/zsh/func/do_init_functions new file mode 100644 index 0000000..57c34a6 --- /dev/null +++ b/zsh/func/do_init_functions @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# Eryn Wells + +for func in ${(P)${1}}; do + if autoload -Uz $func &>-; then + $func + fi +done