diff options
author | nicm <nicm> | 2020-10-30 08:55:56 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-10-30 08:55:56 +0000 |
commit | 649e5970e98b0073763f42a25dcab02aadea688f (patch) | |
tree | 9918f6fc4c7830ff919f9f2fbabdfc38bb16e76c /tmux.h | |
parent | a868bacb46e3c900530bed47a1c6f85b0fbe701c (diff) | |
download | rtmux-649e5970e98b0073763f42a25dcab02aadea688f.tar.gz rtmux-649e5970e98b0073763f42a25dcab02aadea688f.tar.bz2 rtmux-649e5970e98b0073763f42a25dcab02aadea688f.zip |
Add a -O flag to display-menu to change the mouse behaviour and not
close the menu when the mouse is released, from teo_paul1 at yahoo dot
com.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2978,6 +2978,7 @@ __dead void printflike(1, 2) fatalx(const char *, ...); /* menu.c */ #define MENU_NOMOUSE 0x1 #define MENU_TAB 0x2 +#define MENU_STAYOPEN 0x4 struct menu *menu_create(const char *); void menu_add_items(struct menu *, const struct menu_item *, struct cmdq_item *, struct client *, |