2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 01:22:00 +00:00

Generic tab completion after generic noderange

Commands that go further than the noderange should
switch to generic completion for lack of a better
idea.
This commit is contained in:
Jarrod Johnson 2020-07-24 14:35:54 -04:00
parent d2f1ea6cec
commit 9304b41a12

View File

@ -255,6 +255,8 @@ _confluent_nr_completion()
CMPARGS=($COMP_LINE)
_confluent_get_args
if [ $NUMARGS -gt 2 ]; then
compopt -o default
COMPREPLY=()
return;
fi
INPUT=${COMP_WORDS[COMP_CWORD]}