aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_completion.d/git.bash
blob: 450160fc904376084b35b9ae530a5b5440464333 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Complete Git with branch names or tag names if specific keys are used, but
# fall back on filenames otherwise; it's too complicated to be worth trying to
# do it all contextually

# Requires Bash >=4.0 for COMP_KEY
((BASH_VERSINFO[0] >= 4)) || continue

# Define and set helper function
_git() {

    # What completion to do 
    case $COMP_KEY in

        # Complete with branch names if C-x,B is pressed
        98)
            local ci
            while read -r _ ref ; do
                COMPREPLY[ci++]=${ref#refs/heads/}
            done < <(git show-ref --heads)
            ;;

        # Complete with tag names if C-x,T is pressed
        116)
            local ci
            while read -r _ ref ; do
                COMPREPLY[ci++]=${ref#refs/tags/}
            done < <(git show-ref --tags)
            ;;

        # Do no completion, so we fall back on filenames
        *) return 1 ;;

    esac
}
complete -F _git -o bashdefault -o default git