diff options
Diffstat (limited to 'etc/bash_completion.d/vyatta-op')
-rw-r--r-- | etc/bash_completion.d/vyatta-op | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/bash_completion.d/vyatta-op b/etc/bash_completion.d/vyatta-op index 47fac56..833d4a3 100644 --- a/etc/bash_completion.d/vyatta-op +++ b/etc/bash_completion.d/vyatta-op @@ -389,7 +389,7 @@ _vyatta_op_expand () _vyatta_op_last_comp=${_vyatta_op_last_comp_init} # Stop completions from getting stuck elif [ ${#_vyatta_op_completions[@]} -eq 1 ] && - [[ "$cur" == "${COMPREPLY[0]}" ]]; then + [[ "${COMPREPLY[0]}" =~ "$cur" ]]; then _vyatta_op_last_comp="${COMP_WORDS[*]}" # if there are no completions then always show the non-comps elif [ "${COMP_WORDS[*]}" == "$_vyatta_op_last_comp" ] || |