[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.165 and 1.166

version 1.165, 2022/09/09 11:02:23 version 1.166, 2023/08/08 08:08:47
Line 327 
Line 327 
                   "Empty does not write a history file."                    "Empty does not write a history file."
         },          },
   
           { .name = "menu-style",
             .type = OPTIONS_TABLE_STRING,
             .scope = OPTIONS_TABLE_WINDOW,
             .flags = OPTIONS_TABLE_IS_STYLE,
             .default_str = "default",
             .separator = ",",
             .text = "Default style of menu."
           },
   
           { .name = "menu-border-style",
             .type = OPTIONS_TABLE_STRING,
             .scope = OPTIONS_TABLE_WINDOW,
             .default_str = "default",
             .flags = OPTIONS_TABLE_IS_STYLE,
             .separator = ",",
             .text = "Default style of menu borders."
           },
   
           { .name = "menu-border-lines",
             .type = OPTIONS_TABLE_CHOICE,
             .scope = OPTIONS_TABLE_WINDOW,
             .choices = options_table_popup_border_lines_list,
             .default_num = BOX_LINES_SINGLE,
             .text = "Type of characters used to draw menu border lines. Some of "
                     "these are only supported on terminals with UTF-8 support."
           },
   
         { .name = "message-limit",          { .name = "message-limit",
           .type = OPTIONS_TABLE_NUMBER,            .type = OPTIONS_TABLE_NUMBER,
           .scope = OPTIONS_TABLE_SERVER,            .scope = OPTIONS_TABLE_SERVER,

Legend:
Removed from v.1.165  
changed lines
  Added in v.1.166