[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.163 and 1.164

version 1.163, 2022/06/14 07:29:00 version 1.164, 2022/08/02 11:09:26
Line 88 
Line 88 
 static const char *options_table_extended_keys_list[] = {  static const char *options_table_extended_keys_list[] = {
         "off", "on", "always", NULL          "off", "on", "always", NULL
 };  };
   static const char *options_table_allow_passthrough_list[] = {
           "off", "on", "all", NULL
   };
   
 /* Status line format. */  /* Status line format. */
 #define OPTIONS_TABLE_STATUS_FORMAT1 \  #define OPTIONS_TABLE_STATUS_FORMAT1 \
Line 804 
Line 807 
         },          },
   
         { .name = "allow-passthrough",          { .name = "allow-passthrough",
           .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_allow_passthrough_list,
           .default_num = 0,            .default_num = 0,
           .text = "Whether applications are allowed to use the escape sequence "            .text = "Whether applications are allowed to use the escape sequence "
                   "to bypass tmux."                    "to bypass tmux. Can be 'off' (disallowed), 'on' (allowed "
                     "if the pane is visible), or 'all' (allowed even if the pane "
                     "is invisible)."
         },          },
   
         { .name = "allow-rename",          { .name = "allow-rename",

Legend:
Removed from v.1.163  
changed lines
  Added in v.1.164