Re: [PATCH v3] completion: ignore chpwd_functions when cding on zsh

2014-10-09 Thread Øystein Walle
Brandon Turner bt at brandonturner.net writes: Software, such as RVM (ruby version manager), may set chpwd functions that result in an endless loop when cding. chpwd functions should be ignored. Now that it has moved to the zsh-specific script you can achieve this more simply by using cd

Re: [PATCH v3] completion: ignore chpwd_functions when cding on zsh

2014-10-09 Thread Junio C Hamano
Øystein Walle oys...@gmail.com writes: Brandon Turner bt at brandonturner.net writes: Software, such as RVM (ruby version manager), may set chpwd functions that result in an endless loop when cding. chpwd functions should be ignored. Now that it has moved to the zsh-specific script you

Re: [PATCH v3] completion: ignore chpwd_functions when cding on zsh

2014-10-09 Thread Øystein Walle
Junio C Hamano gitster at pobox.com writes: Øystein Walle oystwa at gmail.com writes: Brandon Turner bt at brandonturner.net writes: Software, such as RVM (ruby version manager), may set chpwd functions that result in an endless loop when cding. chpwd functions should be

[PATCH v3] completion: ignore chpwd_functions when cding on zsh

2014-10-08 Thread Brandon Turner
Software, such as RVM (ruby version manager), may set chpwd functions that result in an endless loop when cding. chpwd functions should be ignored. As I've only seen this so far on ZSH, I'm applying this change only to the git-completion.zsh overrides. Signed-off-by: Brandon Turner