]> arthur.barton.de Git - ax-zsh.git/blobdiff - ax.zsh
Correctly unset local variables
[ax-zsh.git] / ax.zsh
diff --git a/ax.zsh b/ax.zsh
index 7755f7e1ae9f60aff433d4c69bd41310b11d8789..c2ed4d6c3e7edce41f1555285e775510d3de75a8 100644 (file)
--- a/ax.zsh
+++ b/ax.zsh
@@ -1,23 +1,21 @@
 # AX-ZSH: Alex' Modular ZSH Configuration
 # Copyright (c) 2015 Alexander Barton <alex@barton.de>
 
-script_name="$(basename -- "${(%):-%N}")"
+script_name="${${(%):-%N}:t}"
 script_type="$script_name[2,-1]"
 
-[[ -f "$HOME/.axzsh.debug" ]] && echo "» $script_name:"
-
 # Load plugin code of a given type.
 # - $1: plugin name
 # - $2: plugin type (optional; defaults to "zshrc")
 function axzsh_load_plugin {
-       dname="$(readlink "$1")" || dname="$1"
-       plugin="$(basename "$dname")"
+       dname="$1:A"
+       plugin="$dname:t"
        [[ -z "$2" ]] && type="zshrc" || type="$2"
        fname="$dname/$plugin.$type"
 
        if [[ ! -d "$dname" ]]; then
                # Plugin not found!
-               if [[ -f "$HOME/.axzsh.debug" ]]; then
+               if [[ -n "$AXZSH_DEBUG" ]]; then
                        # Show error message for all stages in "debug mode":
                        echo "AX-ZSH plugin \"$plugin\" not found (type \"$type\")!" >&2
                elif [[ "$type" == "zshrc" ]]; then
@@ -39,8 +37,13 @@ function axzsh_load_plugin {
                fi
        fi
 
+       if [[ "$type" == "zprofile" && -d "$dname/functions" ]]; then
+               # Add plugin function path when folder exists
+               axzsh_fpath+=("$dname/functions")
+       fi
+
        if [[ -r "$fname" ]]; then
-               [[ -f "$HOME/.axzsh.debug" ]] \
+               [[ -n "$AXZSH_DEBUG" ]] \
                        && echo "   - $plugin ($type) ..."
                source "$fname"
        fi
@@ -54,11 +57,15 @@ function axzsh_load_plugin {
 if [[ -z "$AXZSH" ]]; then
        export AXZSH="$HOME/.axzsh"
        if [[ -f "$HOME/.axzsh.debug" ]]; then
+               export AXZSH_DEBUG=1
                echo "AXZSH=$AXZSH"
+               echo "AXZSH_DEBUG=$AXZSH_DEBUG"
                echo "AXZSH_PLUGIN_D=$AXZSH_PLUGIN_D"
        fi
 fi
 
+[[ -n "$AXZSH_DEBUG" ]] && echo "» $script_name:"
+
 # Setup list of plugins to load:
 typeset -U plugin_list
 plugin_list=(
@@ -71,5 +78,6 @@ plugin_list=(
 for plugin ($plugin_list); do
        axzsh_load_plugin "$plugin" "$script_type"
 done
+unfunction axzsh_load_plugin
 unset script_name script_type plugin
 unset plugin_list