| 371 | } |
| 372 | |
| 373 | static void show_help(struct menu *menu) |
| 374 | { |
| 375 | struct gstr help = str_new(); |
| 376 | |
| 377 | help.max_width = getmaxx(stdscr) - 10; |
| 378 | menu_get_ext_help(menu, &help); |
| 379 | |
| 380 | show_helptext(menu_get_prompt(menu), str_get(&help)); |
| 381 | str_free(&help); |
| 382 | } |
| 383 | |
| 384 | struct search_data { |
| 385 | struct list_head *head; |
no test coverage detected