summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2023-08-15 07:01:47 +0000
committernicm <nicm>2023-08-15 07:01:47 +0000
commitb770a429c63a8e286dbd3939215fbffa59e73d9a (patch)
treed1bdeafad49032ea9cbf908c37b2e9737b828a91 /tmux.h
parent57837bbf67c10638e0684c93bb29e88ca9b07b52 (diff)
Add an option menu-selected-style to configure the currently selected
menu item, from Alexis Hildebrandt.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tmux.h b/tmux.h
index e26cabdf..378871b7 100644
--- a/tmux.h
+++ b/tmux.h
@@ -3308,12 +3308,12 @@ void menu_add_item(struct menu *, const struct menu_item *,
void menu_free(struct menu *);
struct menu_data *menu_prepare(struct menu *, int, int, struct cmdq_item *,
u_int, u_int, struct client *, enum box_lines, const char *,
- const char *, struct cmd_find_state *, menu_choice_cb,
- void *);
+ const char *, const char *, struct cmd_find_state *,
+ menu_choice_cb, void *);
int menu_display(struct menu *, int, int, struct cmdq_item *,
u_int, u_int, struct client *, enum box_lines, const char *,
- const char *, struct cmd_find_state *, menu_choice_cb,
- void *);
+ const char *, const char *, struct cmd_find_state *,
+ menu_choice_cb, void *);
struct screen *menu_mode_cb(struct client *, void *, u_int *, u_int *);
void menu_check_cb(struct client *, void *, u_int, u_int, u_int,
struct overlay_ranges *);