X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;f=ax.zsh;h=1936327986e8e241bea0880b6e06ab20447c4c9a;hb=c782d82badde9f8f59745ab57b5bbf4687838098;hp=4387f8d532416d623c154fcc53dcfe9fdeba8181;hpb=fd02a9f8b1fe0d291dd0c09aa32e8dc197c3fd29;p=ax-zsh.git diff --git a/ax.zsh b/ax.zsh index 4387f8d..1936327 100644 --- a/ax.zsh +++ b/ax.zsh @@ -77,17 +77,17 @@ function axzsh_load_plugin { [[ -n "$AXZSH_DEBUG" ]] \ && echo " - $plugin ($type) ..." - # Note for "external" ("repo/*") plugins and "dumb" terminals: - # These (modern?) plugins most probably don't expect such an - # unusual old terminal configuration and don't behave well - # (echo color sequences, for example). Therefore we DON'T load - # any external plugins at all when running on such a terminal: - # this results in reduced/disabled functionality, but hopefully - # in readable output ... + # Note for "external" ("repo/*") plugins and unusual ("not so + # modern") terminals: These (modern?) plugins most probably + # don't expect such a terminal configuration and don't behave + # well (echo color sequences, for example). Therefore we DON'T + # load any external plugins at all in that case: this results in + # reduced/disabled functionality, but hopefully in readable + # output ... case "$fname" in *"/repos/"*) - axzsh_is_dumb_terminal || source "$fname" + axzsh_is_modern_terminal && source "$fname" ;; *) source "$fname" @@ -99,7 +99,7 @@ function axzsh_load_plugin { case "$fname" in *"/repos/"*) echo "[[ -n \"\$AXZSH_DEBUG\" ]] && echo ' - $plugin ($type): \"$fname\" ...'" >>$cache_file - echo "axzsh_is_dumb_terminal || source '$fname'" >>$cache_file + echo "axzsh_is_modern_terminal && source '$fname'" >>$cache_file ;; *) echo "[[ -n \"\$AXZSH_DEBUG\" ]] && echo ' - $plugin ($type, cached) ...'" >>$cache_file @@ -175,21 +175,21 @@ else # Read in all the plugins for the current "type": for plugin ($plugin_list); do - axzsh_load_plugin "$plugin" "$script_type" "$cache_file" - done - - # Read the "theme file", if any and in "zshrc" stage: - if [[ "$script_type" = "zshrc" ]]; then - if [[ -r "$AXZSH_THEME" ]]; then - source "$AXZSH_THEME" - if [[ -n "$cache_file" ]]; then - # Include the theme into the new cache file: - echo "# BEGIN Theme" >>"$cache_file" - "$cat_cmd" "$AXZSH_THEME" >>"$cache_file" - echo "# END Theme" >>"$cache_file" + # Read the "theme file", if any and in "zshrc" stage. + # This must be done before 99_cleanup is run! + if [[ "$plugin:t" == "99_cleanup" && "$script_type" = "zshrc" ]]; then + if [[ -r "$AXZSH_THEME" ]]; then + source "$AXZSH_THEME" + if [[ -n "$cache_file" ]]; then + # Source the theme in the new cache file: + echo "# BEGIN Theme" >>"$cache_file" + echo 'source "$AXZSH_THEME"' >>"$cache_file" + echo "# END Theme" >>"$cache_file" + fi fi fi - fi + axzsh_load_plugin "$plugin" "$script_type" "$cache_file" + done fi # Clean up ...