aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2022-02-01 14:46:41 +0000
committernicm <nicm>2022-02-01 14:46:41 +0000
commit7e34645fcbe93984461343d67373a29e552fec20 (patch)
treeb4b81dc0308de7512d854bfbe38167272684fbb3 /tmux.h
parent7a4ba6d4a5458f4e2450024d72f0e16905dd5c64 (diff)
downloadrtmux-7e34645fcbe93984461343d67373a29e552fec20.tar.gz
rtmux-7e34645fcbe93984461343d67373a29e552fec20.tar.bz2
rtmux-7e34645fcbe93984461343d67373a29e552fec20.zip
Add option to show arrows for active pane indicator, GitHub issue 3022
from Marcel Partap.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 4f8016d3..6fc1490a 100644
--- a/tmux.h
+++ b/tmux.h
@@ -842,6 +842,12 @@ enum pane_lines {
PANE_LINES_NUMBER
};
+/* Pane border indicator option. */
+#define PANE_BORDER_OFF 0
+#define PANE_BORDER_COLOUR 1
+#define PANE_BORDER_ARROWS 2
+#define PANE_BORDER_BOTH 3
+
/* Screen redraw context. */
struct screen_redraw_ctx {
struct client *c;