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

generic aliases bugfix by sourcing them again
authormartin f. krafft <madduck@madduck.net>
Mon, 13 Oct 2008 09:55:36 +0000 (11:55 +0200)
committermartin f. krafft <madduck@madduck.net>
Mon, 13 Oct 2008 09:55:36 +0000 (11:55 +0200)
.zsh/zshrc/30_aliases_bugfix [moved from .zsh/zshrc/31_cd_bugfix1 with 55% similarity]
.zsh/zshrc/31_cd_bugfix2 [deleted file]

similarity index 55%
rename from .zsh/zshrc/31_cd_bugfix1
rename to .zsh/zshrc/30_aliases_bugfix
index e6a6e05ea12361a3696ad1caad6da40e918e2269..c106d417309e98377b46a21c09c737d772dd7c6d 100644 (file)
@@ -1,4 +1,5 @@
 # fix until #480889 is fixed
 
 # remove the compiled file before it gets sourced
-rm -f $ZDOTDIR/zshrc/31_cd_bugfix2.zwc
+rm -f $ZDOTDIR/zshrc/30_aliases.zwc
+. $ZDOTDIR/zshrc/30_aliases
diff --git a/.zsh/zshrc/31_cd_bugfix2 b/.zsh/zshrc/31_cd_bugfix2
deleted file mode 100644 (file)
index 43fb5dd..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-# fix until #480889 is fixed
-
-cd () { __CHPWD_RUN_FIRST=lscontext && builtin cd "$@" && unset __CHPWD_RUN_FIRST }