[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.136 and 1.137

version 1.136, 2020/12/15 08:31:50 version 1.137, 2021/01/04 08:43:16
Line 69 
Line 69 
 static const char *options_table_window_size_list[] = {  static const char *options_table_window_size_list[] = {
         "largest", "smallest", "manual", "latest", NULL          "largest", "smallest", "manual", "latest", NULL
 };  };
   static const char *options_table_remain_on_exit_list[] = {
           "off", "on", "failed", NULL
   };
   
 /* Status line format. */  /* Status line format. */
 #define OPTIONS_TABLE_STATUS_FORMAT1 \  #define OPTIONS_TABLE_STATUS_FORMAT1 \
Line 949 
Line 952 
         },          },
   
         { .name = "remain-on-exit",          { .name = "remain-on-exit",
           .type = OPTIONS_TABLE_FLAG,            .type = OPTIONS_TABLE_CHOICE,
           .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,            .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
             .choices = options_table_remain_on_exit_list,
           .default_num = 0,            .default_num = 0,
           .text = "Whether panes should remain ('on') or be automatically "            .text = "Whether panes should remain ('on') or be automatically "
                   "killed ('off') when the program inside exits."                    "killed ('off' or 'failed') when the program inside exits."
         },          },
   
         { .name = "synchronize-panes",          { .name = "synchronize-panes",

Legend:
Removed from v.1.136  
changed lines
  Added in v.1.137