]> git.donarmstrong.com Git - zsh.git/blobdiff - .zsh/sourcedir
add ~/.local/bin to PATH
[zsh.git] / .zsh / sourcedir
index bb90720a8de9e696fd21cad06bf8152b29abc7d3..c7eb5cd1be8a611ab98aaaf948147e7f50425c38 100644 (file)
@@ -1,3 +1,4 @@
+# -*- mode: sh -*-
 # sourcedir
 #
 # Defines helper function to source files in a directory
@@ -5,7 +6,7 @@
 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
 # Released under the terms of the Artistic Licence 2.0
 #
-# Source repository: http://git.madduck.net/v/etc/zsh.git
+# Source repository: git://git.madduck.net/etc/zsh.git
 #
 
 . $ZDOTDIR/logging
@@ -16,7 +17,7 @@ sourcedir() {
     return 1
   fi
 #  debug "sourcing directory ${1#$ZDOTDIR/}"
-  for f in "$1"/*(.N); do
+  for f in "$1"/*(.N,@N); do
     case "$f" in
       *~|*.bak|*.old|*.sw?|*.zwc|*.disabled) continue;;
     esac