[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.128 and 1.129

version 1.128, 2020/05/16 16:10:28 version 1.129, 2020/05/16 16:26:34
Line 60 
Line 60 
 static const char *options_table_pane_status_list[] = {  static const char *options_table_pane_status_list[] = {
         "off", "top", "bottom", NULL          "off", "top", "bottom", NULL
 };  };
   static const char *options_table_pane_lines_list[] = {
           "single", "double", "heavy", "simple", "number", NULL
   };
 static const char *options_table_set_clipboard_list[] = {  static const char *options_table_set_clipboard_list[] = {
         "off", "external", "on", NULL          "off", "external", "on", NULL
 };  };
Line 902 
Line 905 
           .default_str = "#{?pane_active,#[reverse],}#{pane_index}#[default] "            .default_str = "#{?pane_active,#[reverse],}#{pane_index}#[default] "
                          "\"#{pane_title}\"",                           "\"#{pane_title}\"",
           .text = "Format of text in the pane status lines."            .text = "Format of text in the pane status lines."
           },
   
           { .name = "pane-border-lines",
             .type = OPTIONS_TABLE_CHOICE,
             .scope = OPTIONS_TABLE_WINDOW,
             .choices = options_table_pane_lines_list,
             .default_num = PANE_LINES_SINGLE,
             .text = "Type of the pane type lines."
         },          },
   
         { .name = "pane-border-status",          { .name = "pane-border-status",

Legend:
Removed from v.1.128  
changed lines
  Added in v.1.129