Adding hack to make git completion faster for local stuff

This commit is contained in:
Luiz Gonzaga dos Santos Filho 2013-04-29 14:45:08 +02:00
parent b198b38864
commit 35e9c2db0f

4
zsh/git.zsh Normal file
View File

@ -0,0 +1,4 @@
# Makes git auto completion faster favouring for local completions
__git_files () {
_wanted files expl 'local files' _files
}