The stack dump has a number of lines limit that may be cutting off the list, however, the default is 100, so I do not know why yours is truncated. Here is some sample code that overrides the limit.
_command void dump_cb_categories() name_info(','VSARG2_READ_ONLY|VSARG2_EXECUTE_FROM_MENU_ONLY|VSARG2_REQUIRES_PRO_EDITION)
{
orig := _default_option(VSOPTION_MAX_STACK_DUMP_ARGUMENT_NOFLINES);
_default_option(VSOPTION_MAX_STACK_DUMP_ARGUMENT_NOFLINES, 5000);
_dump_var(gh_cb_categories, "Categories: ");
_default_option(VSOPTION_MAX_STACK_DUMP_ARGUMENT_NOFLINES, orig);
}