=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/format.c,v retrieving revision 1.25 retrieving revision 1.26 diff -c -r1.25 -r1.26 *** src/usr.bin/tmux/format.c 2013/05/31 19:46:42 1.25 --- src/usr.bin/tmux/format.c 2013/07/05 15:27:14 1.26 *************** *** 1,4 **** ! /* $OpenBSD: format.c,v 1.25 2013/05/31 19:46:42 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: format.c,v 1.26 2013/07/05 15:27:14 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott *************** *** 460,465 **** --- 460,467 ---- format_add(ft, "pane_dead", "%d", wp->fd == -1); format_add(ft, "pane_in_mode", "%d", wp->screen != &wp->base); + format_add(ft, "pane_synchronized", "%d", + !!options_get_number(&wp->window->options, "synchronize-panes")); if (wp->tty != NULL) format_add(ft, "pane_tty", "%s", wp->tty);