diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:18 +0000 |
commit | f2621414ee5f2f601424c22f00e207903e3b6104 (patch) | |
tree | 56a856dafd1ca684bb23263cacaa723ee4f404fc /completions/pydocstyle | |
parent | Adding debian version 1:2.11-8. (diff) | |
download | bash-completion-f2621414ee5f2f601424c22f00e207903e3b6104.tar.xz bash-completion-f2621414ee5f2f601424c22f00e207903e3b6104.zip |
Merging upstream version 1:2.12.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'completions/pydocstyle')
-rw-r--r-- | completions/pydocstyle | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/completions/pydocstyle b/completions/pydocstyle index acbf1ec..53f5690 100644 --- a/completions/pydocstyle +++ b/completions/pydocstyle @@ -1,35 +1,35 @@ # bash completion for pydocstyle -*- shell-script -*- -_pydocstyle() +_comp_cmd_pydocstyle() { - 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 - --help | --version | --match | --ignore-decorators | --select | --ignore | \ - --add-select | --add-ignore | -!(-*)h) + --help | --version | --match | --ignore-decorators | --select | \ + --ignore | --add-select | --add-ignore | -!(-*)h) return ;; --config) - _filedir xml + _comp_compgen_filedir xml return ;; --convention) - COMPREPLY=($(compgen -W "pep257 numpy" -- "$cur")) + _comp_compgen -- -W "pep257 numpy" 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 _pydocstyle pydocstyle + complete -F _comp_cmd_pydocstyle pydocstyle # ex: filetype=sh |