Example, looking up a Geany group and pref: ```C++ StashGroup *group = stash_group_get_group("VTE", nullptr); StashPref *pref = stash_group_get_pref_by_name(group, "send_selection_unsafe");
if (group && pref) { msgwin_status_add("%s.%s = %d", group->name, pref->key_name, *(gboolean *)pref->setting); } ``` Output: ``` VTE.send_selection_unsafe = 0 ```