[BACK]Return to cmd-split-window.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/cmd-split-window.c between version 1.29 and 1.30

version 1.29, 2012/03/03 08:31:18 version 1.30, 2012/03/04 20:50:53
Line 33 
Line 33 
   
 const struct cmd_entry cmd_split_window_entry = {  const struct cmd_entry cmd_split_window_entry = {
         "split-window", "splitw",          "split-window", "splitw",
         "c:dl:hp:Pt:v", 0, 1,          "c:dF:l:hp:Pt:v", 0, 1,
         "[-dhvP] [-c start-directory] [-p percentage|-l size] [-t target-pane] "          "[-dhvP] [-c start-directory] [-F format] [-p percentage|-l size] "
         "[command]",          "[-t target-pane] [command]",
         0,          0,
         cmd_split_window_key_binding,          cmd_split_window_key_binding,
         NULL,          NULL,
Line 59 
Line 59 
         struct window           *w;          struct window           *w;
         struct window_pane      *wp, *new_wp = NULL;          struct window_pane      *wp, *new_wp = NULL;
         struct environ           env;          struct environ           env;
         const char              *cmd, *cwd, *shell;          const char              *cmd, *cwd, *shell;
         char                    *cause, *new_cause;          char                    *cause, *new_cause;
         u_int                    hlimit, paneidx;          u_int                    hlimit;
         int                      size, percentage;          int                      size, percentage;
         enum layout_type         type;          enum layout_type         type;
         struct layout_cell      *lc;          struct layout_cell      *lc;
           const char              *template;
           struct client           *c;
           struct format_tree      *ft;
           char                    *cp;
   
         if ((wl = cmd_find_pane(ctx, args_get(args, 't'), &s, &wp)) == NULL)          if ((wl = cmd_find_pane(ctx, args_get(args, 't'), &s, &wp)) == NULL)
                 return (-1);                  return (-1);
Line 135 
Line 139 
         environ_free(&env);          environ_free(&env);
   
         if (args_has(args, 'P')) {          if (args_has(args, 'P')) {
                 if (window_pane_index(new_wp, &paneidx) != 0)                  template = "#{session_name}:#{window_index}.#{pane_index}";
                         fatalx("index not found");                  if (args_has(args, 'F'))
                 ctx->print(ctx, "%s:%u.%u", s->name, wl->idx, paneidx);                          template = args_get(args, 'F');
   
                   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, new_wp);
   
                   cp = format_expand(ft, template);
                   ctx->print(ctx, "%s", cp);
                   free(cp);
   
                   format_free(ft);
         }          }
         return (0);          return (0);
   

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.30