diff -r 9ad606c80d3b -r b3239e4ad328 bash-completion.sh --- a/bash-completion.sh Sat Oct 03 18:20:30 2020 +0200 +++ b/bash-completion.sh Sun Oct 04 00:04:28 2020 +0200 @@ -13,6 +13,24 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +_relpipe_out_jack_completion_ports() { + # TODO: simpler and faster implementation in relpipe-out-jack or relpipe-in-jack C++ code + jack_lsp -tp 2>/dev/null \ + | tr -d \\t \ + | tr \\n \\0 \ + | relpipe-in-cli \ + --relation "jack_midi_port" \ + --attribute "name" string \ + --attribute "properties" string \ + --attribute "type" string \ + --records-on-stdin true \ + | relpipe-tr-grep '.*' 'properties' 'input' \ + | relpipe-tr-grep '.*' 'type' 'midi' \ + | relpipe-tr-cut '.*' 'name' \ + | relpipe-out-nullbyte \ + | tr \\0 \\n +} + _relpipe_out_jack_completion() { local w0 w1 w2 w3 @@ -22,17 +40,13 @@ w2=${COMP_WORDS[COMP_CWORD-2]} w3=${COMP_WORDS[COMP_CWORD-3]} - BOOLEAN=( - "true" - "false" - ) - - if [[ "$w1" == "--TODO" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN[*]}" -- "$w0")) - elif [[ "$w1" == "--jack-client-name" && "x$w0" == "x" ]]; then COMPREPLY=("'relpipe-out-jack'") + if [[ "$w1" == "--jack-client-name" && "x$w0" == "x" ]]; then COMPREPLY=("'relpipe-out-jack'") + elif [[ "$w1" == "--jack-connect-to-port" ]]; then COMPREPLY=($(compgen -W "$(_relpipe_out_jack_completion_ports)" -- "$w0")) elif [[ "$w1" == "--required-jack-connections" && "x$w0" == "x" ]]; then COMPREPLY=("1") else OPTIONS=( "--jack-client-name" + "--jack-connect-to-port" "--required-jack-connections" ) COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0"))