]>
git.madduck.net Git - etc/zsh.git/commitdiff
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@ git. madduck. net .
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (parent:
61f3157 )
# Source repository: http://git.madduck.net/v/etc/zsh.git
#
# Source repository: http://git.madduck.net/v/etc/zsh.git
#
-. $ZDOTDIR/logging
-. $ZDOTDIR/util
-
+ source $ZDOTDIR/logging
+ source $ZDOTDIR/util
+ source $ZDOTDIR/sourcedir
+
# __do_debug && set -x || :
# __do_debug && set -x || :
- file="%1N"; file="${(%)file}"
- . $ZDOTDIR/sourcedir
- sourcedir $ZDOTDIR/${file#.}
+ _DIR=$ZDOTDIR/${${(%):-%1N}#.}
+ sourcedir $_DIR
+
+ if [[ -d $_DIR/parts.d ]]; then
+ sourcedir $_DIR/parts.d
+ fi
+
+ unset _DIR
# __do_debug && set +x || :
fi
# __do_debug && set +x || :
fi
sourcedir() {
if [ ! -d "$1" ]; then
sourcedir() {
if [ ! -d "$1" ]; then
+ error "no such directory: $1"
return 1
fi
# debug "sourcing directory ${1#$ZDOTDIR/}"
return 1
fi
# debug "sourcing directory ${1#$ZDOTDIR/}"
*~|*.bak|*.old|*.sw?|*.zwc|*.disabled) continue;;
esac
# debug " sourcing file $f"
*~|*.bak|*.old|*.sw?|*.zwc|*.disabled) continue;;
esac
# debug " sourcing file $f"
if [ -n "$ZDOTDIR" ] && [ -d "$ZDOTDIR" ]; then
rm -f $ZDOTDIR/**/*.zwc{,.old}(D.N)
if [ -n "$ZDOTDIR" ] && [ -d "$ZDOTDIR" ]; then
rm -f $ZDOTDIR/**/*.zwc{,.old}(D.N)
- for f ($ZDOTDIR/*(D.,@) $ZDOTDIR/**/*(.)) \
- [[ $f:t != .gitignore ]] && zcompile $f
+ for f in $ZDOTDIR/*(D.,@) $ZDOTDIR/**/*(.); do
+ case "$f:t" in
+ .gitignore|.*.sw?) continue;;
+ esac
+ zcompile $f
+ done
fi
if [ -n "$ZVARDIR" ] && [ -d "$ZVARDIR" ]; then
rm -f $ZVARDIR/**/*.zwc{,.old}(.N)
fi
if [ -n "$ZVARDIR" ] && [ -d "$ZVARDIR" ]; then
rm -f $ZVARDIR/**/*.zwc{,.old}(.N)
- for f ($ZVARDIR/comp*(.N)) zcompile $f
+ for f in $ZVARDIR/comp*(.N); do
+ case "$f:t" in
+ .gitignore|.*.sw?) continue;;
+ esac
+ zcompile $f
+ done
# Source repository: http://git.madduck.net/v/etc/zsh.git
#
# Source repository: http://git.madduck.net/v/etc/zsh.git
#
-zrecompile $ZDOTDIR/**(N) $ZVARDIR/**( N) | while read pre file post; do
+zrecompile $ZDOTDIR/**/*(/N) $ZVARDIR/**/*(/ N) | while read pre file post; do
case "$post" in
succeeded*) rm -f "${file%:}".old;;
*) :;;
case "$post" in
succeeded*) rm -f "${file%:}".old;;
*) :;;