From 5aa3098bb6c25e954cacc168a599d78447b4d005 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 15 Jan 2009 23:42:21 +0000 Subject: Support #S #H in status-left/right. --- tmux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tmux.c') diff --git a/tmux.c b/tmux.c index 81738f24..9f33d7e8 100644 --- a/tmux.c +++ b/tmux.c @@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.96 2009-01-14 22:13:30 nicm Exp $ */ +/* $Id: tmux.c,v 1.97 2009-01-15 23:42:21 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -243,7 +243,7 @@ main(int argc, char **argv) options_set_number(&global_options, "status-interval", 15); options_set_number(&global_options, "status-left-length", 10); options_set_number(&global_options, "status-right-length", 40); - options_set_string(&global_options, "status-left", "%s", ""); /* ugh */ + options_set_string(&global_options, "status-left", "[#S]"); options_set_string( &global_options, "status-right", "\"#24T\" %%H:%%M %%d-%%b-%%y"); options_init(&global_window_options, NULL); -- cgit