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

Diff for /src/usr.bin/tmux/cmd-choose-tree.c between version 1.11 and 1.12

version 1.11, 2012/09/24 12:53:55 version 1.12, 2012/12/24 12:25:52
Line 39 
Line 39 
   
 const struct cmd_entry cmd_choose_tree_entry = {  const struct cmd_entry cmd_choose_tree_entry = {
         "choose-tree", NULL,          "choose-tree", NULL,
         "S:W:swb:c:t:", 0, 1,          "S:W:swub:c:t:", 0, 1,
         "[-sw] [-b session-template] [-c window template] [-S format] " \          "[-swu] [-b session-template] [-c window template] [-S format] " \
         "[-W format] " CMD_TARGET_WINDOW_USAGE,          "[-W format] " CMD_TARGET_WINDOW_USAGE,
         0,          0,
         NULL,          NULL,
Line 231 
Line 231 
   
         window_choose_ready(wl->window->active, cur_win,          window_choose_ready(wl->window->active, cur_win,
                 cmd_choose_tree_callback, cmd_choose_tree_free);                  cmd_choose_tree_callback, cmd_choose_tree_free);
   
           if (args_has(args, 'u'))
                   window_choose_expand_all(wl->window->active);
   
         return (CMD_RETURN_NORMAL);          return (CMD_RETURN_NORMAL);
 }  }

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12