From 35e9c2db0f327ce494bde783e63cf25bf396ab01 Mon Sep 17 00:00:00 2001 From: Luiz Gonzaga dos Santos Filho Date: Mon, 29 Apr 2013 14:45:08 +0200 Subject: [PATCH] Adding hack to make git completion faster for local stuff --- zsh/git.zsh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 zsh/git.zsh diff --git a/zsh/git.zsh b/zsh/git.zsh new file mode 100644 index 0000000..c87ec5a --- /dev/null +++ b/zsh/git.zsh @@ -0,0 +1,4 @@ +# Makes git auto completion faster favouring for local completions +__git_files () { + _wanted files expl 'local files' _files +}