summaryrefslogtreecommitdiffstats
path: root/.gita-completion.bash
blob: cad120c48c568a4f745196240ce5bf86c8e0af7f (plain)
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
36
37
38
39
40
41
42
43
44
45
_gita_completions()
{

  local cur commands repos cmd
  local IFS=$'\n\t '

  cur=${COMP_WORDS[COMP_CWORD]}
  cmd=${COMP_WORDS[1]}


  # this doesn't work for two repos with the same basename
  #gita_path=${XDG_CONFIG_HOME:-$HOME/.config}/gita/repo_path
  #repos=`awk '{split($0, paths, ":")} END {for (i in paths) {n=split(paths[i],b, /\//); print b[n]}}' ${gita_path}`

  if [ $COMP_CWORD -eq 1 ]; then
    # FIXME: this is somewhat slow
    commands=`gita -h | sed '2q;d' |sed 's/[{}.,]/ /g'`
    COMPREPLY=($(compgen -W "${commands}" ${cur}))
  elif [ $COMP_CWORD -gt 1 ]; then
    case $cmd in
      add)
        COMPREPLY=($(compgen -d ${cur}))
        ;;
      clone)
        COMPREPLY=($(compgen -f ${cur}))
        ;;
      color | flags)
        COMPREPLY=($(compgen -W "ll set" ${cur}))
        ;;
      ll | context)
        groups=`gita group ls`
        COMPREPLY=($(compgen -W "${groups}" ${cur}))
        return
        ;;
      *)
        repos=`gita ls`
        COMPREPLY=($(compgen -W "${repos}" ${cur}))
        ;;
    esac
  fi
}

complete -F _gita_completions gita