mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 06:17:04 +00:00
Merge branch 'obsd-master'
Conflicts: Makefile cmd-link-window.c cmd-unlink-window.c
This commit is contained in:
1
format.c
1
format.c
@ -555,6 +555,7 @@ format_window_pane(struct format_tree *ft, struct window_pane *wp)
|
||||
format_add(ft, "pane_id", "%%%u", wp->id);
|
||||
format_add(ft, "pane_active", "%d", wp == wp->window->active);
|
||||
format_add(ft, "pane_dead", "%d", wp->fd == -1);
|
||||
format_add(ft, "pane_input_off", "%d", !!(wp->flags & PANE_INPUTOFF));
|
||||
|
||||
if (window_pane_visible(wp)) {
|
||||
format_add(ft, "pane_left", "%u", wp->xoff);
|
||||
|
Reference in New Issue
Block a user