From 27578815dace7addeaaf15227aa102705046f843 Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 15 Mar 2019 10:04:13 +0000 Subject: Add a -v flag to display-message to show verbose messages as the format is parsed, this gives the user a way to debug problems with formats rather than just being confronted with (for example) a blank status line. --- tmux.h | 1 + 1 file changed, 1 insertion(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 95e59e36..d6264357 100644 --- a/tmux.h +++ b/tmux.h @@ -1575,6 +1575,7 @@ char *paste_make_sample(struct paste_buffer *); #define FORMAT_STATUS 0x1 #define FORMAT_FORCE 0x2 #define FORMAT_NOJOBS 0x4 +#define FORMAT_VERBOSE 0x8 #define FORMAT_NONE 0 #define FORMAT_PANE 0x80000000U #define FORMAT_WINDOW 0x40000000U -- cgit