]> git.ipfire.org Git - thirdparty/systemd.git/blame - shell-completion/bash/systemd-delta
Merge pull request #11180 from yuwata/update-bash-completion
[thirdparty/systemd.git] / shell-completion / bash / systemd-delta
CommitLineData
0bc8e31b 1# systemd-delta(1) completion -*- shell-script -*-
7059062c 2# SPDX-License-Identifier: LGPL-2.1+
0bc8e31b
TA
3#
4# This file is part of systemd.
5#
0bc8e31b
TA
6#
7# systemd is free software; you can redistribute it and/or modify it
8# under the terms of the GNU Lesser General Public License as published by
9# the Free Software Foundation; either version 2.1 of the License, or
10# (at your option) any later version.
11#
12# systemd is distributed in the hope that it will be useful, but
13# WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15# General Public License for more details.
16#
17# You should have received a copy of the GNU Lesser General Public License
18# along with systemd; If not, see <http://www.gnu.org/licenses/>.
19
20__contains_word() {
21 local w word=$1; shift
22 for w in "$@"; do
23 [[ $w = "$word" ]] && return
24 done
25}
26
27_systemd-delta() {
28 local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
29 local comps
30
31 local -A OPTS=(
32 [STANDALONE]='--help -h --no-pager --version'
33 [ARG]='--diff --type -t'
34 )
35
36 _init_completion || return
37
38
39 if __contains_word "$prev" ${OPTS[ARG]}; then
40 case $prev in
41 --diff)
42 comps='yes no'
43 ;;
44 --type|-t)
45 comps='masked equivalent redirected overridden unchanged extended default'
46 ;;
47 esac
48 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
49 return 0
50 fi
51
52 if [[ "$cur" = -* ]]; then
53 COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
54 return 0
55 fi
56
57 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
58 return 0
59}
60
61complete -F _systemd-delta systemd-delta