[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.122 and 1.123

version 1.122, 2020/05/16 14:46:14 version 1.123, 2020/05/16 15:01:31
Line 401 
Line 401 
         },          },
   
         { .name = "message-command-style",          { .name = "message-command-style",
           .type = OPTIONS_TABLE_STYLE,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_SESSION,            .scope = OPTIONS_TABLE_SESSION,
           .default_str = "bg=black,fg=yellow"            .default_str = "bg=black,fg=yellow",
             .flags = OPTIONS_TABLE_IS_STYLE,
             .separator = ","
         },          },
   
         { .name = "message-style",          { .name = "message-style",
           .type = OPTIONS_TABLE_STYLE,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_SESSION,            .scope = OPTIONS_TABLE_SESSION,
           .default_str = "bg=yellow,fg=black"            .default_str = "bg=yellow,fg=black",
             .flags = OPTIONS_TABLE_IS_STYLE,
             .separator = ","
         },          },
   
         { .name = "mouse",          { .name = "mouse",
Line 473 
Line 477 
         { .name = "status-bg",          { .name = "status-bg",
           .type = OPTIONS_TABLE_COLOUR,            .type = OPTIONS_TABLE_COLOUR,
           .scope = OPTIONS_TABLE_SESSION,            .scope = OPTIONS_TABLE_SESSION,
           .default_num = 2,            .default_num = 8,
         },          },
   
         { .name = "status-fg",          { .name = "status-fg",
           .type = OPTIONS_TABLE_COLOUR,            .type = OPTIONS_TABLE_COLOUR,
           .scope = OPTIONS_TABLE_SESSION,            .scope = OPTIONS_TABLE_SESSION,
           .default_num = 0,            .default_num = 8,
         },          },
   
         { .name = "status-format",          { .name = "status-format",
Line 526 
Line 530 
         },          },
   
         { .name = "status-left-style",          { .name = "status-left-style",
           .type = OPTIONS_TABLE_STYLE,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_SESSION,            .scope = OPTIONS_TABLE_SESSION,
           .default_str = "default"            .default_str = "default",
             .flags = OPTIONS_TABLE_IS_STYLE,
             .separator = ","
         },          },
   
         { .name = "status-position",          { .name = "status-position",
Line 555 
Line 561 
         },          },
   
         { .name = "status-right-style",          { .name = "status-right-style",
           .type = OPTIONS_TABLE_STYLE,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_SESSION,            .scope = OPTIONS_TABLE_SESSION,
           .default_str = "default"            .default_str = "default",
             .flags = OPTIONS_TABLE_IS_STYLE,
             .separator = ","
         },          },
   
         { .name = "status-style",          { .name = "status-style",
           .type = OPTIONS_TABLE_STYLE,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_SESSION,            .scope = OPTIONS_TABLE_SESSION,
           .default_str = "bg=green,fg=black"            .default_str = "bg=green,fg=black",
             .flags = OPTIONS_TABLE_IS_STYLE,
             .separator = ","
         },          },
   
         { .name = "update-environment",          { .name = "update-environment",
Line 666 
Line 676 
         },          },
   
         { .name = "mode-style",          { .name = "mode-style",
           .type = OPTIONS_TABLE_STYLE,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_WINDOW,            .scope = OPTIONS_TABLE_WINDOW,
           .default_str = "bg=yellow,fg=black"            .default_str = "bg=yellow,fg=black",
             .flags = OPTIONS_TABLE_IS_STYLE,
             .separator = ","
         },          },
   
         { .name = "monitor-activity",          { .name = "monitor-activity",
Line 704 
Line 716 
         },          },
   
         { .name = "pane-active-border-style",          { .name = "pane-active-border-style",
           .type = OPTIONS_TABLE_STYLE,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_WINDOW,            .scope = OPTIONS_TABLE_WINDOW,
           .default_str = "fg=green"            .default_str = "#{?pane_in_mode,fg=yellow,#{?synchronize-panes,fg=red,fg=green}}",
             .flags = OPTIONS_TABLE_IS_STYLE,
             .separator = ","
         },          },
   
         { .name = "pane-base-index",          { .name = "pane-base-index",
Line 732 
Line 746 
         },          },
   
         { .name = "pane-border-style",          { .name = "pane-border-style",
           .type = OPTIONS_TABLE_STYLE,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_WINDOW,            .scope = OPTIONS_TABLE_WINDOW,
           .default_str = "default"            .default_str = "default",
             .flags = OPTIONS_TABLE_IS_STYLE,
             .separator = ","
         },          },
   
         { .name = "remain-on-exit",          { .name = "remain-on-exit",
Line 750 
Line 766 
         },          },
   
         { .name = "window-active-style",          { .name = "window-active-style",
           .type = OPTIONS_TABLE_STYLE,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,            .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
           .default_str = "default"            .default_str = "default",
             .flags = OPTIONS_TABLE_IS_STYLE,
             .separator = ","
         },          },
   
         { .name = "window-size",          { .name = "window-size",
Line 763 
Line 781 
         },          },
   
         { .name = "window-style",          { .name = "window-style",
           .type = OPTIONS_TABLE_STYLE,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,            .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
           .default_str = "default"            .default_str = "default",
             .flags = OPTIONS_TABLE_IS_STYLE,
             .separator = ","
         },          },
   
         { .name = "window-status-activity-style",          { .name = "window-status-activity-style",
           .type = OPTIONS_TABLE_STYLE,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_WINDOW,            .scope = OPTIONS_TABLE_WINDOW,
           .default_str = "reverse"            .default_str = "reverse",
             .flags = OPTIONS_TABLE_IS_STYLE,
             .separator = ","
         },          },
   
         { .name = "window-status-bell-style",          { .name = "window-status-bell-style",
           .type = OPTIONS_TABLE_STYLE,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_WINDOW,            .scope = OPTIONS_TABLE_WINDOW,
           .default_str = "reverse"            .default_str = "reverse",
             .flags = OPTIONS_TABLE_IS_STYLE,
             .separator = ","
         },          },
   
         { .name = "window-status-current-format",          { .name = "window-status-current-format",
Line 787 
Line 811 
         },          },
   
         { .name = "window-status-current-style",          { .name = "window-status-current-style",
           .type = OPTIONS_TABLE_STYLE,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_WINDOW,            .scope = OPTIONS_TABLE_WINDOW,
           .default_str = "default"            .default_str = "default",
             .flags = OPTIONS_TABLE_IS_STYLE,
             .separator = ","
         },          },
   
         { .name = "window-status-format",          { .name = "window-status-format",
Line 799 
Line 825 
         },          },
   
         { .name = "window-status-last-style",          { .name = "window-status-last-style",
           .type = OPTIONS_TABLE_STYLE,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_WINDOW,            .scope = OPTIONS_TABLE_WINDOW,
           .default_str = "default"            .default_str = "default",
             .flags = OPTIONS_TABLE_IS_STYLE,
             .separator = ","
         },          },
   
         { .name = "window-status-separator",          { .name = "window-status-separator",
Line 811 
Line 839 
         },          },
   
         { .name = "window-status-style",          { .name = "window-status-style",
           .type = OPTIONS_TABLE_STYLE,            .type = OPTIONS_TABLE_STRING,
           .scope = OPTIONS_TABLE_WINDOW,            .scope = OPTIONS_TABLE_WINDOW,
           .default_str = "default"            .default_str = "default",
             .flags = OPTIONS_TABLE_IS_STYLE,
             .separator = ","
         },          },
   
         { .name = "wrap-search",          { .name = "wrap-search",

Legend:
Removed from v.1.122  
changed lines
  Added in v.1.123