From: martin f. krafft Date: Mon, 12 May 2008 15:49:35 +0000 (+0100) Subject: make it actually work X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7cdd43f4d8d3f981a278189f059f764d0529e085;p=zsh.git make it actually work --- diff --git a/.zsh/zshrc/31_cd_bugfix b/.zsh/zshrc/31_cd_bugfix deleted file mode 100644 index d306d25..0000000 --- a/.zsh/zshrc/31_cd_bugfix +++ /dev/null @@ -1,4 +0,0 @@ -# fix until #480889 is fixed - -cd () { builtin cd $* && ll } -rm -f $(print -P '%N').zwc diff --git a/.zsh/zshrc/31_cd_bugfix1 b/.zsh/zshrc/31_cd_bugfix1 new file mode 100644 index 0000000..e6a6e05 --- /dev/null +++ b/.zsh/zshrc/31_cd_bugfix1 @@ -0,0 +1,4 @@ +# fix until #480889 is fixed + +# remove the compiled file before it gets sourced +rm -f $ZDOTDIR/zshrc/31_cd_bugfix2.zwc diff --git a/.zsh/zshrc/31_cd_bugfix2 b/.zsh/zshrc/31_cd_bugfix2 new file mode 100644 index 0000000..f551907 --- /dev/null +++ b/.zsh/zshrc/31_cd_bugfix2 @@ -0,0 +1,3 @@ +# fix until #480889 is fixed + +cd () { builtin cd $* && ll }