This adds formatting support to new-window.
---
 trunk/cmd-new-window.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/trunk/cmd-new-window.c b/trunk/cmd-new-window.c
index ccc6d5e..9425855 100644
--- a/trunk/cmd-new-window.c
+++ b/trunk/cmd-new-window.c
@@ -122,15 +122,15 @@ cmd_new_window_exec(struct cmd *self, struct cmd_ctx *ctx)
                server_status_session_group(s);
 
        if (args_has(args, 'P')) {
-               template = "#{session_name}:#{window_index}";
-               if (args_has(args, 'F'))
-                       template = args_get(args, 'F');
+               if ((template = args_get(args, 'F')) == NULL)
+                       template = DEFAULT_PANE_INFO_TEMPLATE;
 
                ft = format_create();
                if ((c = cmd_find_client(ctx, NULL)) != NULL)
                    format_client(ft, c);
                format_session(ft, s);
                format_winlink(ft, s, wl);
+               format_window_pane(ft, wl->window->active);
 
                cp = format_expand(ft, template);
                ctx->print(ctx, "%s", cp);
-- 
1.7.10


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users

Reply via email to