From 593fddf84b6ae661df46597a22107babcc77efd5 Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 28 Mar 2020 09:51:12 +0000 Subject: Make two -E only close popup automatically if the command exited with 0. --- tmux.h | 1 + 1 file changed, 1 insertion(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index bcec0a23..a9f4de8a 100644 --- a/tmux.h +++ b/tmux.h @@ -2761,6 +2761,7 @@ int menu_display(struct menu *, int, struct cmdq_item *, u_int, /* popup.c */ #define POPUP_WRITEKEYS 0x1 #define POPUP_CLOSEEXIT 0x2 +#define POPUP_CLOSEEXITZERO 0x4 u_int popup_width(struct cmdq_item *, u_int, const char **, struct client *, struct cmd_find_state *); u_int popup_height(u_int, const char **); -- cgit