Suppress node showing up in "show ...."

I have a list within a list.

list X
{

list Y
{

leaf N1 {

}
leaf N2 {
config false;
type uint32;
};
};
};

With the config false in leaf N2. Following automatically happening

show X Y <<<<<<<<<<<<< Is it possible to suppress this from coming.

By using tailf:cli-suppress-show-path; @ list X — the cli “show X…” is suppressed.

list X {
tailf:cli-suppress-show-path;

list Y {

leaf N1 {

}
leaf N2 {
config false;
type uint32;
}
}
}