You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
535 B
15 lines
535 B
# Get the latest Git completion. |
|
completion_file="${0:h}/_git" |
|
completion_file_url='http://zsh.git.sourceforge.net/git/gitweb.cgi?p=zsh/zsh;a=blob_plain;f=Completion/Unix/Command/_git;hb=HEAD' |
|
if [[ ! -e "$completion_file" ]] && (( $+commands[git] )); then |
|
if (( $+commands[curl] )); then |
|
curl -L "$completion_file_url" -o "$completion_file" &> /dev/null &! |
|
fi |
|
|
|
if (( $+commmands[wget] )); then |
|
wget -C "$completion_file_url" -O "$completion_file" &> /dev/null &! |
|
fi |
|
fi |
|
unset completion_file |
|
unset completion_file_url |
|
|
|
|