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

maintain latest symlink for tmpfuncs
authormartin f. krafft <madduck@madduck.net>
Tue, 10 Jan 2012 16:33:09 +0000 (17:33 +0100)
committermartin f. krafft <madduck@madduck.net>
Tue, 10 Jan 2012 16:33:09 +0000 (17:33 +0100)
.zsh/zshrc/39_tempfuncs

index 4b46a17a10b6092baae8a523d248f658466f7af0..79f43dd89172c6a46e962b45b737494301ec09b1 100644 (file)
@@ -9,8 +9,11 @@
 #
 
 cdt () {
-  builtin cd $(mktemp -td ${1:-cdt}.XXXXXX)
+  local tmpdir
+  tmpdir=$(mktemp -td ${1:-cdt}.XXXXXX)
+  builtin cd $tmpdir
   pwd
+  ln -sf $tmpdir ${TMPDIR:-/tmp}/cdt.latest
 }
 
 vit () {
@@ -31,6 +34,7 @@ vit () {
   [ -n "$stdin" ] && cat >| $tmpfile
   sensible-editor $tmpfile </dev/tty >/dev/tty
   echo $tmpfile
+  ln -sf $tmpfile ${TMPDIR:-/tmp}/vit.latest
 }
 
 # vim:ft=zsh