summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Southworth <john.southworth@vyatta.com>2011-09-30 19:03:46 -0500
committerJohn Southworth <john.southworth@vyatta.com>2011-09-30 19:03:46 -0500
commit48e3ffd43f71f323e5b9e14dc162691d84c63d4a (patch)
treefa5f65a13ca506b812ef1611602733b0b161e4ce
parentea90539e3172000e59fe05207325d843897fafd5 (diff)
downloadvyatta-op-48e3ffd43f71f323e5b9e14dc162691d84c63d4a.tar.gz
vyatta-op-48e3ffd43f71f323e5b9e14dc162691d84c63d4a.zip
Stop completions from getting stuck on nodes when backspacing to them
-rw-r--r--etc/bash_completion.d/vyatta-op4
1 files changed, 4 insertions, 0 deletions
diff --git a/etc/bash_completion.d/vyatta-op b/etc/bash_completion.d/vyatta-op
index f10084a..47fac56 100644
--- a/etc/bash_completion.d/vyatta-op
+++ b/etc/bash_completion.d/vyatta-op
@@ -387,6 +387,10 @@ _vyatta_op_expand ()
_vyatta_op_invalid_completion
COMPREPLY=( "" " " )
_vyatta_op_last_comp=${_vyatta_op_last_comp_init}
+ # Stop completions from getting stuck
+ elif [ ${#_vyatta_op_completions[@]} -eq 1 ] &&
+ [[ "$cur" == "${COMPREPLY[0]}" ]]; 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" ] ||
[ ${#_vyatta_op_completions[@]} -eq 0 ]; then