Tab completion is not working for conatiner inide the list

for below schema, when i give tab after the command “show abcd e”, efgh is not automatically filling by itself. What can I do to make the tab completion work for efgh?

list abcd {
key “name”;
leaf name {
type string;
}
container efgh {
uses state;
}
}

Assuming that whatever is inside the “state” grouping used inside the efgh container is some operational “config false” data. Then, if you are in operational mode in the CLI, “show abcd e” tab complete will work.

list abcd {
    key "name";
      
    leaf name { 
        type string;
    }
    container state {
        uses name-state;
    }
}

show abcd state is displaying the data.
If i give tab after show abcd, it is showing me state as a possible match completion. i want to use state only after name is given. Is there any way to avoid showing state as option under possible match completion after abcd?

See the tailf:cli-suppress-show-match YANG extension. Details in the tailf_yang_cli_extensions(5) man page.