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/pwd | |
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 '')
-rw-r--r-- | completions/pwd | 12 | ||||
-rw-r--r-- | completions/pwdx | 15 |
2 files changed, 12 insertions, 15 deletions
diff --git a/completions/pwd b/completions/pwd index b9c4fbc..159dacc 100644 --- a/completions/pwd +++ b/completions/pwd @@ -1,9 +1,9 @@ # pwd(1) completion -*- shell-script -*- -_pwd() +_comp_cmd_pwd() { - local cur prev words cword - _init_completion || return + local cur prev words cword comp_args + _comp_initialize -- "$@" || return case $prev in --help | --version) @@ -11,10 +11,8 @@ _pwd() ;; esac - COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur")) - [[ ${COMPREPLY-} ]] || - COMPREPLY=($(compgen -W '$(_parse_usage "$1")' -- "$cur")) + _comp_compgen_usage -c help -s "$1" } && - complete -F _pwd pwd + complete -F _comp_cmd_pwd pwd # ex: filetype=sh diff --git a/completions/pwdx b/completions/pwdx index 25a1a1e..ba460f2 100644 --- a/completions/pwdx +++ b/completions/pwdx @@ -1,9 +1,9 @@ # pwdx(1) completion -*- shell-script -*- -_pwdx() +_comp_cmd_pwdx() { - local cur prev words cword - _init_completion || return + local cur prev words cword comp_args + _comp_initialize -- "$@" || return case $prev in -h | --help | -V | --version) @@ -12,13 +12,12 @@ _pwdx() esac if [[ $cur == -* ]]; then - local help='$(_parse_help "$1")' - [[ $help ]] || help=-V - COMPREPLY=($(compgen -W "$help" -- "$cur")) + _comp_compgen_help || + _comp_compgen -- -W '-V' else - _pids + _comp_compgen_pids fi } && - complete -F _pwdx pwdx + complete -F _comp_cmd_pwdx pwdx # ex: filetype=sh |