From: Alexander Barton Date: Fri, 2 Oct 2015 08:52:51 +0000 (+0200) Subject: 01_zprofile, 99_zlogin: Use full plugin path X-Git-Url: https://arthur.barton.de/gitweb/?p=ax-zsh.git;a=commitdiff_plain;h=21310b4f1bd1a7f792c4bd55b509d7fe5aafdcf8 01_zprofile, 99_zlogin: Use full plugin path --- diff --git a/core/01_zprofile/01_zprofile.zshrc b/core/01_zprofile/01_zprofile.zshrc index 5b6493e..b30e727 100644 --- a/core/01_zprofile/01_zprofile.zshrc +++ b/core/01_zprofile/01_zprofile.zshrc @@ -11,7 +11,7 @@ unset PS1 [[ -f "$HOME/.axzsh.debug" ]] && echo "» 01_zprofile.zsh:" for plugin ($plugin_list); do - axzsh_load_plugin "$(basename "$plugin")" "zprofile" + axzsh_load_plugin "$plugin" "zprofile" done AXZSH_ZPROFILE_READ=2 [[ -f "$HOME/.axzsh.debug" ]] && echo "» 01_zprofile.zsh (end)" diff --git a/core/99_zlogin/99_zlogin.zshrc b/core/99_zlogin/99_zlogin.zshrc index 4f96617..a2c5ca6 100644 --- a/core/99_zlogin/99_zlogin.zshrc +++ b/core/99_zlogin/99_zlogin.zshrc @@ -8,7 +8,7 @@ [[ -f "$HOME/.axzsh.debug" ]] && echo "» 99_zlogin.zsh:" for plugin ($plugin_list); do - axzsh_load_plugin "$(basename "$plugin")" "zlogin" + axzsh_load_plugin "$plugin" "zlogin" done AXZSH_ZLOGIN_READ=2 [[ -f "$HOME/.axzsh.debug" ]] && echo "» 99_zlogin.zsh (end)"