From: poljar (Damir Jelić) Date: Fri, 1 Feb 2013 00:57:49 +0000 (+0100) Subject: bash-completion: Don't complete devices in the list commands X-Git-Url: https://code.delx.au/pulseaudio/commitdiff_plain/a5af95f83dc6607cae4befa8816be6ba1e36a3b7 bash-completion: Don't complete devices in the list commands This fixes some wrong completion for the list commands for example: pactl list sinks _sink_name_ --- diff --git a/shell-completion/pulseaudio-bash-completion.sh b/shell-completion/pulseaudio-bash-completion.sh index 686178ee..a82b10ef 100644 --- a/shell-completion/pulseaudio-bash-completion.sh +++ b/shell-completion/pulseaudio-bash-completion.sh @@ -174,6 +174,7 @@ _pactl() { _known_hosts_real "$cur" ;; esac + [[ $COMPREPLY ]] && return 0 case $prev in list) COMPREPLY=($(compgen -W '${list_types[*]}' -- "$cur")) ;; @@ -234,6 +235,7 @@ _pactl() { -s) _known_hosts_real "$cur" ;; esac + [[ $COMPREPLY ]] && return 0 case $cur in --server=*) @@ -316,6 +318,7 @@ _pacmd() { esac case $prev in + list-*) ;; describe-module|load-module) comps=$(__all_modules) COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))