Hi guys

I hated the fact that I didn't have branch name completions for remove_topic_branch in zsh, so I wrote an auto-completion script for it: https://github.com/danberindei/scripts/blob/master/zsh/_remove_topic_branch

Just save it to any directory and then add the directory to fpath in your .zshrc/.zshenv, like this:

fpath=( $fpath <dir> )

or like this

FPATH=$FPATH:<dir>


Hope this helps.

Cheers
Dan