From 5bc0810342d5f1c78a29f1d54fc79fabc586298a Mon Sep 17 00:00:00 2001 From: John Southworth Date: Tue, 4 Oct 2011 15:12:15 -0500 Subject: Fix a bug in op mode handling of non sticking completions, we want the help text if the current completion is empty for consistency --- etc/bash_completion.d/vyatta-op | 1 + 1 file changed, 1 insertion(+) diff --git a/etc/bash_completion.d/vyatta-op b/etc/bash_completion.d/vyatta-op index 22353e1..f79cb38 100644 --- a/etc/bash_completion.d/vyatta-op +++ b/etc/bash_completion.d/vyatta-op @@ -411,6 +411,7 @@ _vyatta_op_expand () _vyatta_op_last_comp=${_vyatta_op_last_comp_init} # Stop completions from getting stuck elif [ ${#_vyatta_op_completions[@]} -eq 1 ] && + [ -n "$cur" ] && [[ "${COMPREPLY[0]}" =~ "$cur" ]]; then _vyatta_op_last_comp=${_vyatta_op_last_comp_init} # if there are no completions then always show the non-comps -- cgit v1.2.3