diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-05-28 07:59:09 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-05-28 07:59:09 +0000 |
commit | 7b554613cc8630d5779d6d5d5d0b077e3a0278ef (patch) | |
tree | 192b5d216b5fb19037348fbdc5522d8aa1f8bf56 /usr.bin/tmux/tmux.h | |
parent | 039527c15dcad051bdcad6e1a63c3e1fe6183df0 (diff) |
Strip layout from choose-windows again (leave in list-windows),
suggested by Romain Francoise, diff from Thomas Adam.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index b860debd647..f53e7a9077d 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.340 2012/05/27 21:43:57 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.341 2012/05/28 07:59:07 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -117,9 +117,7 @@ extern char **environ; #define DEFAULT_WINDOW_TEMPLATE \ "#{window_index}: #{window_name}#{window_flags} " \ "(#{window_panes} panes) " \ - "[#{window_width}x#{window_height}] " \ - "[layout #{window_layout}] #{window_id}" \ - "#{?window_active, (active),}" + "[#{window_width}x#{window_height}]" #define DEFAULT_PANE_INFO_TEMPLATE \ "#{session_name}:#{window_index}.#{pane_index}" |