summaryrefslogtreecommitdiffstats
path: root/completions/_rfkill
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:19 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:19 +0000
commit6c09f2a45c5541e9c207d14fc7aa21a4a0066bde (patch)
tree0221189d367bf661f6f9493c4f17a03f0dd4b7d2 /completions/_rfkill
parentReleasing progress-linux version 1:2.11-8~progress7.99u1. (diff)
downloadbash-completion-6c09f2a45c5541e9c207d14fc7aa21a4a0066bde.tar.xz
bash-completion-6c09f2a45c5541e9c207d14fc7aa21a4a0066bde.zip
Merging upstream version 1:2.12.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'completions/_rfkill')
-rw-r--r--completions/_rfkill19
1 files changed, 9 insertions, 10 deletions
diff --git a/completions/_rfkill b/completions/_rfkill
index 96a6c09..c4733e7 100644
--- a/completions/_rfkill
+++ b/completions/_rfkill
@@ -3,29 +3,28 @@
# Use of this file is deprecated on systems with util-linux >= 2.31, which
# ships completion for the rfkill included with it.
-_rfkill()
+_comp_cmd_rfkill()
{
- local cur prev words cword
- _init_completion || return
+ local cur prev words cword comp_args
+ _comp_initialize -- "$@" || return
if [[ $cur == -* ]]; then
- COMPREPLY=($(compgen -W '--version' -- "$cur"))
+ _comp_compgen -- -W '--version'
else
case $cword in
1)
- COMPREPLY=($(compgen -W "help event list block unblock" \
- -- "$cur"))
+ _comp_compgen -- -W "help event list block unblock"
;;
2)
if [[ $prev == block || $prev == unblock ]]; then
- COMPREPLY=($(compgen -W "$($1 list | awk -F: \
- '/^[0-9]/ {print $1}') all wifi bluetooth uwb wimax \
- wwan gps" -- "$cur"))
+ _comp_compgen_split -- "
+ $("$1" list | _comp_awk -F : '/^[0-9]/ {print $1}')
+ all wifi bluetooth uwb wimax wwan gps"
fi
;;
esac
fi
} &&
- complete -F _rfkill rfkill
+ complete -F _comp_cmd_rfkill rfkill
# ex: filetype=sh