Don't print double spaces in list output.

pull/1/head
Nicholas Marriott 2012-01-30 20:39:56 +00:00
parent 0e59bc75fd
commit f188345b33
1 changed files with 2 additions and 2 deletions

View File

@ -87,14 +87,14 @@ cmd_list_windows_session(
template = "#{window_index}: "
"#{window_name} "
"[#{window_width}x#{window_height}] "
"[layout #{window_layout}] #{window_id} "
"[layout #{window_layout}] #{window_id}"
"#{?window_active, (active),}";
break;
case 1:
template = "#{session_name}:#{window_index}: "
"#{window_name} "
"[#{window_width}x#{window_height}] "
"[layout #{window_layout}] #{window_id} "
"[layout #{window_layout}] #{window_id}"
"#{?window_active, (active),}";
break;
}