Currently, CVI sorts all the entries from the Source Code Browser alphabetically. While this is useful for finding items, it is less practical when tracking items.
If we have, for instance
void foo()
{
int a = 0, c = 0;
}
// 1000 lines of code
void bar()
{
int b = 0;
}
In the source code browser, under Variables, we will have:
a (line 3)
b (line 1000+)
c (line 3)
I believe that having an option to sort the items either alphabetically or by occurence would give users a better view of their code.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.