]> git.ipfire.org Git - thirdparty/systemd.git/blame - shell-completion/bash/systemd-delta
fix(SC2148): add ShellCheck directive to bash completion scripts
[thirdparty/systemd.git] / shell-completion / bash / systemd-delta
CommitLineData
f8457290 1# shellcheck shell=bash
0bc8e31b 2# systemd-delta(1) completion -*- shell-script -*-
db9ecf05 3# SPDX-License-Identifier: LGPL-2.1-or-later
0bc8e31b
TA
4#
5# This file is part of systemd.
6#
0bc8e31b
TA
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
85fce6f4 18# along with systemd; If not, see <https://www.gnu.org/licenses/>.
0bc8e31b
TA
19
20__contains_word() {
843cfcb1
ZJS
21 local w word=$1; shift
22 for w in "$@"; do
23 [[ $w = "$word" ]] && return
24 done
0bc8e31b
TA
25}
26
27_systemd-delta() {
f34173a0 28 local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]} words cword
843cfcb1
ZJS
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
0bc8e31b
TA
48 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
49 return 0
843cfcb1
ZJS
50 fi
51
6a0667d2 52 if [[ "$cur" = -* ]] || [[ -z ${comps-} ]]; then
843cfcb1
ZJS
53 COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
54 return 0
55 fi
56
36ec0268 57 COMPREPLY=( $(compgen -W '${comps-}' -- "$cur") )
843cfcb1 58 return 0
0bc8e31b
TA
59}
60
61complete -F _systemd-delta systemd-delta