Add formats for pane written/skipped bytes for debugging.

This commit is contained in:
nicm
2020-04-18 07:19:28 +00:00
parent baf1fca273
commit e153b928ff
4 changed files with 12 additions and 0 deletions

3
tmux.h
View File

@ -934,6 +934,9 @@ struct window_pane {
char *searchstr;
int searchregex;
u_int written;
u_int skipped;
TAILQ_ENTRY(window_pane) entry;
RB_ENTRY(window_pane) tree_entry;
};