Skip to content

Commit

Permalink
[git] Update completions script
Browse files Browse the repository at this point in the history
  • Loading branch information
0xdevalias committed Jul 21, 2016
1 parent dcf9a6d commit 4c84ff3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git/completion.zsh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Uses git's autocompletion for inner commands. Assumes an install of git's
# bash `git-completion` script at $completion below (this is where Homebrew
# tosses it, at least).
completion='$(brew --prefix)/share/zsh/site-functions/_git'
completion="$(brew --prefix)/share/zsh/site-functions/_git"

if test -f $completion
if [[ -e $completion ]]
then
source $completion
fi

0 comments on commit 4c84ff3

Please sign in to comment.