Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam
2024-11-15 10:01:11 +00:00
7 changed files with 34 additions and 43 deletions

4
tmux.h
View File

@ -1303,6 +1303,9 @@ TAILQ_HEAD(winlink_stack, winlink);
#define PANE_SCROLLBARS_WIDTH 1
#define PANE_SCROLLBARS_PADDING 0
/* True if screen in alternate screen. */
#define SCREEN_IS_ALTERNATE(s) ((s)->saved_grid != NULL)
/* Layout direction. */
enum layout_type {
LAYOUT_LEFTRIGHT,
@ -3221,6 +3224,7 @@ void window_pane_update_used_data(struct window_pane *,
void window_set_fill_character(struct window *);
void window_pane_default_cursor(struct window_pane *);
int window_pane_mode(struct window_pane *);
int window_pane_show_scrollbar(struct window_pane *, int);
/* layout.c */
u_int layout_count_cells(struct layout_cell *);