From 3cf730cd3301b476ef256a88db83b8025b03ded5 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 2 Aug 2013 19:09:13 -0300 Subject: Avoiding duplication on git completion --- lib/keyringer/completions/bash | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/keyringer/completions/bash b/lib/keyringer/completions/bash index 247b7ff..a8fce92 100644 --- a/lib/keyringer/completions/bash +++ b/lib/keyringer/completions/bash @@ -16,6 +16,14 @@ _keyringer_git_complete() { fi _git + + LAST=${COMP_WORDS[COMP_CWORD]} + REPLY=${COMPREPLY[@]} + + if [ "$REPLY" == "$LAST" ]; then + return + fi + echo ${COMPREPLY[@]} ) fi -- cgit v1.2.3