[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.90 and 1.91

version 1.90, 2017/06/23 15:36:52 version 1.91, 2017/07/26 16:14:08
Line 51 
Line 51 
 static const char *options_table_bell_action_list[] = {  static const char *options_table_bell_action_list[] = {
         "none", "any", "current", "other", NULL          "none", "any", "current", "other", NULL
 };  };
   static const char *options_table_visual_bell_list[] = {
           "off", "on", "both", NULL
   };
 static const char *options_table_pane_status_list[] = {  static const char *options_table_pane_status_list[] = {
         "off", "top", "bottom", NULL          "off", "top", "bottom", NULL
 };  };
Line 143 
Line 146 
           .separator = ","            .separator = ","
         },          },
   
           { .name = "activity-action",
             .type = OPTIONS_TABLE_CHOICE,
             .scope = OPTIONS_TABLE_SESSION,
             .choices = options_table_bell_action_list,
             .default_num = BELL_OTHER
           },
   
         { .name = "assume-paste-time",          { .name = "assume-paste-time",
           .type = OPTIONS_TABLE_NUMBER,            .type = OPTIONS_TABLE_NUMBER,
           .scope = OPTIONS_TABLE_SESSION,            .scope = OPTIONS_TABLE_SESSION,
Line 166 
Line 176 
           .default_num = BELL_ANY            .default_num = BELL_ANY
         },          },
   
         { .name = "bell-on-alert",  
           .type = OPTIONS_TABLE_FLAG,  
           .scope = OPTIONS_TABLE_SESSION,  
           .default_num = 0  
         },  
   
         { .name = "default-command",          { .name = "default-command",
           .type = OPTIONS_TABLE_STRING,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_SESSION,            .scope = OPTIONS_TABLE_SESSION,
Line 350 
Line 354 
           .default_str = "#S:#I:#W - \"#T\" #{session_alerts}"            .default_str = "#S:#I:#W - \"#T\" #{session_alerts}"
         },          },
   
           { .name = "silence-action",
             .type = OPTIONS_TABLE_CHOICE,
             .scope = OPTIONS_TABLE_SESSION,
             .choices = options_table_bell_action_list,
             .default_num = BELL_OTHER
           },
   
         { .name = "status",          { .name = "status",
           .type = OPTIONS_TABLE_FLAG,            .type = OPTIONS_TABLE_FLAG,
           .scope = OPTIONS_TABLE_SESSION,            .scope = OPTIONS_TABLE_SESSION,
Line 502 
Line 513 
         },          },
   
         { .name = "visual-activity",          { .name = "visual-activity",
           .type = OPTIONS_TABLE_FLAG,            .type = OPTIONS_TABLE_CHOICE,
           .scope = OPTIONS_TABLE_SESSION,            .scope = OPTIONS_TABLE_SESSION,
           .default_num = 0            .choices = options_table_visual_bell_list,
             .default_num = VISUAL_OFF
         },          },
   
         { .name = "visual-bell",          { .name = "visual-bell",
           .type = OPTIONS_TABLE_FLAG,            .type = OPTIONS_TABLE_CHOICE,
           .scope = OPTIONS_TABLE_SESSION,            .scope = OPTIONS_TABLE_SESSION,
           .default_num = 0            .choices = options_table_visual_bell_list,
             .default_num = VISUAL_OFF
         },          },
   
         { .name = "visual-silence",          { .name = "visual-silence",
           .type = OPTIONS_TABLE_FLAG,            .type = OPTIONS_TABLE_CHOICE,
           .scope = OPTIONS_TABLE_SESSION,            .scope = OPTIONS_TABLE_SESSION,
           .default_num = 0            .choices = options_table_visual_bell_list,
             .default_num = VISUAL_OFF
         },          },
   
         { .name = "word-separators",          { .name = "word-separators",

Legend:
Removed from v.1.90  
changed lines
  Added in v.1.91