diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:19 +0000 |
commit | 6c09f2a45c5541e9c207d14fc7aa21a4a0066bde (patch) | |
tree | 0221189d367bf661f6f9493c4f17a03f0dd4b7d2 /completions/gprof | |
parent | Releasing progress-linux version 1:2.11-8~progress7.99u1. (diff) | |
download | bash-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/gprof')
-rw-r--r-- | completions/gprof | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/completions/gprof b/completions/gprof index 5a4ab2d..cb18633 100644 --- a/completions/gprof +++ b/completions/gprof @@ -1,56 +1,54 @@ # gprof(1) completion -*- shell-script -*- -_gprof() +_comp_cmd_gprof() { - local cur prev words cword split - _init_completion -s || return + local cur prev words cword was_split comp_args + _comp_initialize -s -- "$@" || return case $cur in -A* | -C* | -J* | -p* | -P* | -q* | -Q* | -n* | -N* | -d*) return ;; -S*) - cur=${cur:2} - _filedir - COMPREPLY=("${COMPREPLY[@]/#/-S}") + _comp_compgen -c "${cur:2}" filedir + ((${#COMPREPLY[@]})) && COMPREPLY=("${COMPREPLY[@]/#/-S}") return ;; -O*) - cur=${cur:2} - COMPREPLY=($(compgen -P -O -W 'auto bsd 4.4bsd magic prof' \ - -- "$cur")) + _comp_compgen -c "${cur:2}" -- -P -O -W 'auto bsd 4.4bsd magic + prof' return ;; esac case $prev in -I | --directory-path) - _filedir -d + _comp_compgen_filedir -d return ;; -R | --file-ordering | --external-symbol-table) - _filedir + _comp_compgen_filedir return ;; -w | --width | -k | -m | --min-count | -h | --help | -e | -E | -f | -F) return ;; --file-format) - COMPREPLY=($(compgen -W 'auto bsd 4.4bsd magic prof' -- "$cur")) + _comp_compgen -- -W 'auto bsd 4.4bsd magic prof' return ;; esac - $split && return + [[ $was_split ]] && return if [[ $cur == -* ]]; then - COMPREPLY=($(compgen -W '$(_parse_usage "$1")' -- "$cur")) + _comp_compgen_usage [[ ${COMPREPLY-} == *= ]] && compopt -o nospace return fi - _filedir + _comp_compgen_filedir } && - complete -F _gprof gprof + complete -F _comp_cmd_gprof gprof # ex: filetype=sh |