]> git.donarmstrong.com Git - zsh.git/blobdiff - .zsh/func/TS
add ~/.local/bin to PATH
[zsh.git] / .zsh / func / TS
index 19d2237dc93165033dff5c5163a2f957b8f3b6ff..d87df4b83fd87d434349cb8538cdadea90db219e 100755 (executable)
@@ -7,14 +7,16 @@
 # 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
 #
 
 local topic filename ret
 topic="${(j:_:)@}"
 filename="${TMPDIR:-/tmp}/script.${topic:-$LOGNAME}.$$.$(date +%Y%m%d.%H%M)"
-PS1="%# " script -c "zsh -f" -f -q "$filename"
+echo "I: writing typescript to $filename ..." >&2
+PS1="
+%# " PS2= RPS1= script -c "zsh -f" -f -q "$filename"
 ret=$?
-echo "$filename"
+echo "I: typescript is in $filename ."
 return $ret
 exit $ret