]> git.donarmstrong.com Git - zsh.git/blobdiff - .zsh/zprofile/00_path
fix compilation globs
[zsh.git] / .zsh / zprofile / 00_path
deleted file mode 120000 (symlink)
index 520b1241d60e5dbb0772bb80257073848e675369..0000000000000000000000000000000000000000
+++ /dev/null
@@ -1 +0,0 @@
-../zshrc/00_path
\ No newline at end of file
new file mode 100644 (file)
index 0000000000000000000000000000000000000000..230e94f14aa22f1c71a8d2a40e726644718f596c
--- /dev/null
@@ -0,0 +1,34 @@
+# zprofile/00_path
+#
+# Adds custom directories to the $PATH
+#
+# 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
+#
+
+__prepend_dir_to_path()
+{
+  for dir; do
+    case "$PATH" in
+      "*:${dir}:*"|"${dir}:*"|"*:${dir}") :;;
+      *) test -d "$dir" && path=("$dir" $path);;
+    esac
+  done
+}
+
+__append_dir_to_path()
+{
+  for dir; do
+    case "$PATH" in
+      "*:${dir}:*"|"${dir}:*"|"*:${dir}") :;;
+      *) test -d "$dir" && path+="$dir";;
+    esac
+  done
+}
+
+__prepend_dir_to_path $BINDIR
+__append_dir_to_path /usr/lib/surfraw
+
+# vim:ft=zsh