Add option to show arrows for active pane indicator, GitHub issue 3022

from Marcel Partap.
This commit is contained in:
nicm
2022-02-01 14:46:41 +00:00
parent 7a4ba6d4a5
commit 7e34645fcb
4 changed files with 86 additions and 20 deletions

6
tmux.h
View File

@ -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;