[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.103 and 1.104

version 1.103, 2019/04/07 20:18:20 version 1.104, 2019/04/23 20:36:55
Line 141 
Line 141 
         },          },
   
         { .name = "command-alias",          { .name = "command-alias",
           .type = OPTIONS_TABLE_ARRAY,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_SERVER,            .scope = OPTIONS_TABLE_SERVER,
             .flags = OPTIONS_TABLE_IS_ARRAY,
           .default_str = "split-pane=split-window,"            .default_str = "split-pane=split-window,"
                          "splitp=split-window,"                           "splitp=split-window,"
                          "server-info=show-messages -JT,"                           "server-info=show-messages -JT,"
Line 206 
Line 207 
         },          },
   
         { .name = "terminal-overrides",          { .name = "terminal-overrides",
           .type = OPTIONS_TABLE_ARRAY,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_SERVER,            .scope = OPTIONS_TABLE_SERVER,
             .flags = OPTIONS_TABLE_IS_ARRAY,
           .default_str = "xterm*:XT:Ms=\\E]52;%p1%s;%p2%s\\007"            .default_str = "xterm*:XT:Ms=\\E]52;%p1%s;%p2%s\\007"
                          ":Cs=\\E]12;%p1%s\\007:Cr=\\E]112\\007"                           ":Cs=\\E]12;%p1%s\\007:Cr=\\E]112\\007"
                          ":Ss=\\E[%p1%d q:Se=\\E[2 q,screen*:XT",                           ":Ss=\\E[%p1%d q:Se=\\E[2 q,screen*:XT",
Line 215 
Line 217 
         },          },
   
         { .name = "user-keys",          { .name = "user-keys",
           .type = OPTIONS_TABLE_ARRAY,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_SERVER,            .scope = OPTIONS_TABLE_SERVER,
             .flags = OPTIONS_TABLE_IS_ARRAY,
           .default_str = "",            .default_str = "",
           .separator = ","            .separator = ","
         },          },
Line 421 
Line 424 
         },          },
   
         { .name = "status-format",          { .name = "status-format",
           .type = OPTIONS_TABLE_ARRAY,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_SESSION,            .scope = OPTIONS_TABLE_SESSION,
             .flags = OPTIONS_TABLE_IS_ARRAY,
           .default_arr = options_table_status_format_default,            .default_arr = options_table_status_format_default,
         },          },
   
Line 504 
Line 508 
         },          },
   
         { .name = "update-environment",          { .name = "update-environment",
           .type = OPTIONS_TABLE_ARRAY,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_SESSION,            .scope = OPTIONS_TABLE_SESSION,
             .flags = OPTIONS_TABLE_IS_ARRAY,
           .default_str = "DISPLAY KRB5CCNAME SSH_ASKPASS SSH_AUTH_SOCK "            .default_str = "DISPLAY KRB5CCNAME SSH_ASKPASS SSH_AUTH_SOCK "
                          "SSH_AGENT_PID SSH_CONNECTION WINDOWID XAUTHORITY"                           "SSH_AGENT_PID SSH_CONNECTION WINDOWID XAUTHORITY"
         },          },

Legend:
Removed from v.1.103  
changed lines
  Added in v.1.104