[BACK]Return to options-table.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/options-table.c between version 1.11 and 1.12

version 1.11, 2011/07/03 19:07:54 version 1.12, 2011/07/30 18:01:26
Line 36 
Line 36 
 const char *options_table_mode_keys_list[] = {  const char *options_table_mode_keys_list[] = {
         "emacs", "vi", NULL          "emacs", "vi", NULL
 };  };
   const char *options_table_mode_mouse_list[] = {
           "off", "on", "copy-mode", NULL
   };
 const char *options_table_clock_mode_style_list[] = {  const char *options_table_clock_mode_style_list[] = {
         "12", "24", NULL          "12", "24", NULL
 };  };
Line 484 
Line 487 
         },          },
   
         { .name = "mode-mouse",          { .name = "mode-mouse",
           .type = OPTIONS_TABLE_FLAG,            .type = OPTIONS_TABLE_CHOICE,
             .choices = options_table_mode_mouse_list,
           .default_num = 0            .default_num = 0
         },          },
   

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