mirror of
https://github.com/tmux/tmux.git
synced 2025-09-01 20:57:00 +00:00
Add a format to show if there are unseen changes while in a mode, from
Dan Aloni in GitHub issue 3498.
This commit is contained in:
15
format.c
15
format.c
@ -1885,6 +1885,18 @@ format_cb_pane_input_off(struct format_tree *ft)
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
/* Callback for pane_unseen_changes. */
|
||||
static void *
|
||||
format_cb_pane_unseen_changes(struct format_tree *ft)
|
||||
{
|
||||
if (ft->wp != NULL) {
|
||||
if (ft->wp->flags & PANE_UNSEENCHANGES)
|
||||
return (xstrdup("1"));
|
||||
return (xstrdup("0"));
|
||||
}
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
/* Callback for pane_last. */
|
||||
static void *
|
||||
format_cb_pane_last(struct format_tree *ft)
|
||||
@ -2953,6 +2965,9 @@ static const struct format_table_entry format_table[] = {
|
||||
{ "pane_tty", FORMAT_TABLE_STRING,
|
||||
format_cb_pane_tty
|
||||
},
|
||||
{ "pane_unseen_changes", FORMAT_TABLE_STRING,
|
||||
format_cb_pane_unseen_changes
|
||||
},
|
||||
{ "pane_width", FORMAT_TABLE_STRING,
|
||||
format_cb_pane_width
|
||||
},
|
||||
|
Reference in New Issue
Block a user