Skip to content

Instantly share code, notes, and snippets.

@itsthatguy
Created July 1, 2014 20:32
Show Gist options
  • Save itsthatguy/e14e9f2951e37523998a to your computer and use it in GitHub Desktop.
Save itsthatguy/e14e9f2951e37523998a to your computer and use it in GitHub Desktop.
Switch to your git dir with tab completion
# ZSH: Git Directory switch with tab completion
# $ wd [tab]
GIT_DIR=$HOME/git
wd() { cd $GIT_DIR/$1 }
compctl -W $GIT_DIR/ -/ wd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment