summaryrefslogtreecommitdiffstats
path: root/completions/2to3
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/2to3
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/2to3')
-rw-r--r--completions/2to325
1 files changed, 14 insertions, 11 deletions
diff --git a/completions/2to3 b/completions/2to3
index 7c5b330..0a60e1f 100644
--- a/completions/2to3
+++ b/completions/2to3
@@ -1,39 +1,42 @@
# bash completion for 2to3 -*- shell-script -*-
-_2to3()
+_comp_cmd_2to3()
{
- local cur prev words cword split
- _init_completion -s || return
+ local cur prev words cword was_split comp_args
+ _comp_initialize -s -- "$@" || return
case $prev in
-h | --help | --add-suffix)
return
;;
-f | --fix | -x | --nofix)
- COMPREPLY=($(compgen -W \
- "$($1 --list-fixes 2>/dev/null | command sed -e 1d)" -- "$cur"))
+ _comp_compgen_split -- "$(
+ "$1" --list-fixes 2>/dev/null | command sed -e 1d
+ )"
return
;;
-j | --processes)
- COMPREPLY=($(compgen -W "{1..$(_ncpus)}" -- "$cur"))
+ local REPLY
+ _comp_get_ncpus
+ _comp_compgen -- -W "{1..$REPLY}"
return
;;
-o | --output-dir)
- _filedir -d
+ _comp_compgen_filedir -d
return
;;
esac
- $split && return
+ [[ $was_split ]] && return
if [[ $cur == -* ]]; then
- COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
+ _comp_compgen_help
[[ ${COMPREPLY-} == *= ]] && compopt -o nospace
return
fi
- _filedir py
+ _comp_compgen_filedir py
} &&
- complete -F _2to3 2to3
+ complete -F _comp_cmd_2to3 2to3
# ex: filetype=sh