Hi, all.
I'm using function list plug-in and very happy with it. The only thing bothers me it includes in FUNCTION group all if() statements if they are placed in else clause. Example:

if(bCondA)
{
    ActionA();
}
else if(bCondB)
{
    ActionB();
}
else
{
    ActionC();
}

Here if(bCondB) would be considered as a function and if you follow this style you will have huge list of if() functions.

Could anyone explain me how to avoid this behavior if Function List?

Thanks.