]> 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:

Declare global arrays from helper functions
authormartin f. krafft <madduck@madduck.net>
Mon, 1 May 2017 18:21:05 +0000 (20:21 +0200)
committermartin f. krafft <madduck@madduck.net>
Wed, 17 May 2017 12:35:04 +0000 (14:35 +0200)
.zsh/util

index d3292f478b9626d1cf87fdc7982c2c5e003085e1..ed37cb49e9a107bd169f3c2f95c479c8c1f61c41 100644 (file)
--- a/.zsh/util
+++ b/.zsh/util
@@ -16,7 +16,7 @@ array_prepend() {
   local arrayname="$1"; shift
   local i
   for i; do
   local arrayname="$1"; shift
   local i
   for i; do
-    eval "$arrayname=(\$i \${$arrayname[@]/\$i})"
+    eval "typeset -ga $arrayname=(\$i \${$arrayname[@]/\$i})"
   done
 }
 
   done
 }
 
@@ -24,7 +24,7 @@ array_append() {
   local arrayname="$1"; shift
   local i
   for i; do
   local arrayname="$1"; shift
   local i
   for i; do
-    eval "$arrayname=(\${$arrayname[@]/\$i} \$i)"
+    eval "typeset -ga $arrayname=(\${$arrayname[@]/\$i} \$i)"
   done
 }
 
   done
 }