diff options
author | John Southworth <john.southworth@vyatta.com> | 2011-09-30 16:40:56 -0500 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2011-09-30 16:40:56 -0500 |
commit | fc0e4507f0b9a6ea8bb50642ac79962b6ea20ecd (patch) | |
tree | c3daeb3d1ecf0e66024347df3df125204adc9361 | |
parent | 38883c022a45e1dd2e6bebd37b05396caf15fed5 (diff) | |
download | vyatta-op-fc0e4507f0b9a6ea8bb50642ac79962b6ea20ecd.tar.gz vyatta-op-fc0e4507f0b9a6ea8bb50642ac79962b6ea20ecd.zip |
Fix problem with recovering from invalid completion
-rw-r--r-- | etc/bash_completion.d/vyatta-op | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/etc/bash_completion.d/vyatta-op b/etc/bash_completion.d/vyatta-op index ed751c0..d9d7141 100644 --- a/etc/bash_completion.d/vyatta-op +++ b/etc/bash_completion.d/vyatta-op @@ -373,6 +373,7 @@ _vyatta_op_expand () echo _vyatta_op_invalid_completion COMPREPLY=( "" " " ) + _vyatta_op_last_comp=${_vyatta_op_last_comp_init} # if there are no completions then always show the non-comps elif [ "${COMP_WORDS[*]}" == "$_vyatta_op_last_comp" ] || [ ${#_vyatta_op_completions[@]} -eq 0 ]; then |