]> arthur.barton.de Git - ax-zsh.git/commitdiff
01_zprofile.zshrc: Don't duplicate code, call axzsh_handle_stage()
authorAlexander Barton <alex@barton.de>
Sat, 26 Dec 2020 19:59:09 +0000 (20:59 +0100)
committerAlexander Barton <alex@barton.de>
Sat, 26 Dec 2020 19:59:11 +0000 (20:59 +0100)
core/01_zprofile/01_zprofile.zshrc

index 93a423d43e19b925460599d73cf115bf1c160be1..7260cb6d46f877a1505bcf283dc8d0fd6a1c2706 100644 (file)
@@ -11,28 +11,7 @@ unset PS1
 
 [[ -n "$AXZSH_DEBUG" ]] && echo "» 01_zprofile.zsh:"
 
-if [[ -r "$AXZSH/cache/zprofile.cache" ]]; then
-       # Cache file exists, use it!
-       [[ -n "$AXZSH_DEBUG" ]] \
-               && echo "   - Reading cache file \"$AXZSH/cache/zprofile.cache\" ..."
-       source "$AXZSH/cache/zprofile.cache"
-else
-       # No cache file, so read plugins manually. The "plugin_list" can be
-       # empty, when the "zshrc" stage has been read in using the cache file,
-       # but there is no cache file for the "zprofile" stage. In that case
-       # the "plugin_list" must be assembled right now (see "ax.zsh" file!):
-       if [[ -z "$plugin_list" ]]; then
-               typeset -U plugin_list
-               plugin_list=(
-                       "$AXZSH/core/"[0-5]*
-                       "$AXZSH/active_plugins/"*(N)
-                       "$AXZSH/core/"[6-9]*
-               )
-       fi
-       for plugin ($plugin_list); do
-               axzsh_load_plugin "$plugin" "zprofile"
-       done
-fi
+axzsh_handle_stage "01_zprofile.zsh" "zprofile"
 AXZSH_ZPROFILE_READ=2
 
 [[ -n "$AXZSH_DEBUG" ]] && echo "» 01_zprofile.zsh (end)"