You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
grouping group1 {
list interface
{
key "name";
description "The list of named interfaces on the device";
leaf name
{
type string;
description "Configure interface name.";
}
uses group2;
}
}
grouping group2{
list unit
{
key "unit-id";
description "Configure sub-interface under the physical interface.";
leaf unit-id {
type uint16;
description "Configure unit which identifies sub-interface under physical interface.";
}
}
}
the autocompletion does not display the available options on pressing TAB for the leaf node of the inner group(group2). But the options are seen on pressing ?. This issue is seen for all data types. The auto completion works fine and displays available options for the outermost node.(like list interface)
supervisor@apr12: cfg> set interface **PRESS <TAB>**
ifp-0/0/1 ifp-0/0/2 ifp-0/0/3 ifp-0/0/47 ifp-0/0/48 ifp-0/0/49
ifp-0/0/50 ifp-0/0/52 ifp-0/0/54 lo-0/0/0 lo-0/0/3 <name>
supervisor@apr12: cfg> set interface ifp-0/0/ **PRESS <TAB>**
ifp-0/0/1 ifp-0/0/2 ifp-0/0/3 ifp-0/0/47 ifp-0/0/48 ifp-0/0/49
ifp-0/0/50 ifp-0/0/52 ifp-0/0/54
supervisor@apr12: cfg> set interface ifp-0/0/1 unit 4 **PRESS <TAB>**
<unit-id> <---- here 41, 42 and 4070 is not being displayed
supervisor@apr12: cfg> set interface ifp-0/0/1 unit 4 **PRESS ?**
41 Configure unit which identifies sub-interface under physical interface.
42 Configure unit which identifies sub-interface under physical interface.
4070 Configure unit which identifies sub-interface under physical interface.
<unit-id> Configure unit which identifies sub-interface under physical interface.
supervisor@apr12: cfg> set interface ifp-0/0/1 unit 4
Is this the intended behavior and let me know if you see this issue too
The text was updated successfully, but these errors were encountered:
The yang def is as follows:
the autocompletion does not display the available options on pressing TAB for the leaf node of the inner group(group2). But the options are seen on pressing ?. This issue is seen for all data types. The auto completion works fine and displays available options for the outermost node.(like list interface)
Is this the intended behavior and let me know if you see this issue too
The text was updated successfully, but these errors were encountered: