summaryrefslogtreecommitdiff
blob: 34c81f3b52c3999ea5c881cc1abb9292f784a305 (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
# Gentoo Linux Bash Shell Command Completion
#
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later

source "@helpersdir@/gentoo-common.sh"

#
# epkginfo completion
#

_epkginfo()
{
    local cur prev
    cur="${COMP_WORDS[COMP_CWORD]}"
    prev="${COMP_WORDS[COMP_CWORD-1]}"

    # Only complete if the previous entry on the command line is not
    # a package name.
    if [[ ${COMP_CWORD} -eq 1 || ${prev:0:1} == "-" ]]; then
        _equery_meta $cur
    fi

    return 0
} &&
complete -F _epkginfo epkginfo

# vim: ft=sh:et:ts=4:sw=4:tw=80