summaryrefslogtreecommitdiffstats
path: root/completions/p4
blob: 5bcadf60e539dff797adf33911f2b2d5aab72527 (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
46
47
48
49
50
# Perforce completion                                      -*- shell-script -*-
# by Frank Cusack <frank@google.com>

_comp_cmd_p4()
{
    local cur prev words cword comp_args
    _comp_initialize -- "$@" || return

    local p4commands p4filetypes

    # rename isn't really a command
    p4commands="$(p4 help commands 2>/dev/null | _comp_awk 'NF>3 {print $1}')"
    p4filetypes="ctext cxtext ktext kxtext ltext tempobj ubinary \
        uresource uxbinary xbinary xltext xtempobj xtext \
        text binary resource"

    if ((cword == 1)); then
        _comp_compgen -- -W "$p4commands"
    elif ((cword == 2)); then
        case $prev in
            help)
                _comp_compgen -- -W "simple commands environment filetypes
                    jobview revisions usage views $p4commands"
                ;;
            admin)
                _comp_compgen -- -W "checkpoint stop"
                ;;
            *) ;;

        esac
    elif ((cword > 2)); then
        case $prev in
            -t)
                case ${words[cword - 2]} in
                    add | edit | reopen)
                        _comp_compgen -- -W "$p4filetypes"
                        ;;
                    *) ;;

                esac
                ;;
            *) ;;

        esac
    fi

} &&
    complete -F _comp_cmd_p4 -o default p4 g4

# ex: filetype=sh