Alphanumeric sort on non-alphanumeric data in show command

I have a show command e.g.

show gibby summary status
1/1/gibby1
1/1/gibby10
1/1/gibby11
1/1/gibby2
1/1/gibby3

But I want the dispay to be like :
1/1/gibby1
1/1/gibby2
1/1/gibby3
1/1/gibby10
1/1/gibby11

Is there any provision in yang to achieve this?

        container status {
            description "gibby summary status";

            list gibby {
                description "gibby data";
                tailf:info  "Gibby";

                key name;

                tailf:cli-enforce-table;

                leaf name {
                    type STRING;
                }
         }

There is no construct in YANG to specify how CLI output will be sorted.

The CLI agent as supported by ConfD Premium provides a CLI completion customization feature that allows you to modify the default behavior with custom completion callbacks. This is described in Chapter 16.12.1, Customizing CLI completion, of the ConfD User Guide.