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

mktemp only takes six characters now
authormartin f. krafft <madduck@madduck.net>
Tue, 28 Apr 2009 16:40:02 +0000 (18:40 +0200)
committermartin f. krafft <madduck@madduck.net>
Tue, 28 Apr 2009 16:40:12 +0000 (18:40 +0200)
.zsh/zshrc/39_tempfuncs

index 506f0010d2bdcbe2aa6eaf743f6de288ea9ad317..de2e2320c23917a30d09fad6fcea1ca129fac4e7 100644 (file)
@@ -9,12 +9,12 @@
 #
 
 cdt () {
-  builtin cd $(mktemp -td cdt.XXXXXXXX)
+  builtin cd $(mktemp -td cdt.XXXXXX)
   pwd
 }
 
 vit () {
-  local tmpfile=$(mktemp -t vit.XXXXXXXX)
+  local tmpfile=$(mktemp -t vit.XXXXXX)
   [ "$1" = '-' ] && cat >| $tmpfile
   sensible-editor $tmpfile </dev/tty >/dev/tty
   echo $tmpfile