[BACK]Return to cmd-show-options.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/cmd-show-options.c between version 1.55 and 1.56

version 1.55, 2019/06/20 07:41:29 version 1.56, 2019/06/20 11:59:59
Line 33 
Line 33 
 static void             cmd_show_options_print(struct cmd *, struct cmdq_item *,  static void             cmd_show_options_print(struct cmd *, struct cmdq_item *,
                             struct options_entry *, int, int);                              struct options_entry *, int, int);
 static enum cmd_retval  cmd_show_options_all(struct cmd *, struct cmdq_item *,  static enum cmd_retval  cmd_show_options_all(struct cmd *, struct cmdq_item *,
                             enum options_table_scope, struct options *);                              int, struct options *);
   
 const struct cmd_entry cmd_show_options_entry = {  const struct cmd_entry cmd_show_options_entry = {
         .name = "show-options",          .name = "show-options",
         .alias = "show",          .alias = "show",
   
         .args = { "AgHqst:vw", 0, 1 },          .args = { "AgHpqst:vw", 0, 1 },
         .usage = "[-AgHqsvw] [-t target-session|target-window] [option]",          .usage = "[-AgHpqsvw] " CMD_TARGET_PANE_USAGE " [option]",
   
         .target = { 't', CMD_FIND_WINDOW, CMD_FIND_CANFAIL },          .target = { 't', CMD_FIND_PANE, CMD_FIND_CANFAIL },
   
         .flags = CMD_AFTERHOOK,          .flags = CMD_AFTERHOOK,
         .exec = cmd_show_options_exec          .exec = cmd_show_options_exec
Line 83 
Line 83 
         struct session                  *s = item->target.s;          struct session                  *s = item->target.s;
         struct winlink                  *wl = item->target.wl;          struct winlink                  *wl = item->target.wl;
         struct options                  *oo;          struct options                  *oo;
         enum options_table_scope         scope;  
         char                            *argument, *name = NULL, *cause;          char                            *argument, *name = NULL, *cause;
         int                              window, idx, ambiguous, parent;          int                              window, idx, ambiguous, parent, scope;
         struct options_entry            *o;          struct options_entry            *o;
   
         window = (self->entry == &cmd_show_window_options_entry);          window = (self->entry == &cmd_show_window_options_entry);
Line 191 
Line 190 
 }  }
   
 static enum cmd_retval  static enum cmd_retval
 cmd_show_options_all(struct cmd *self, struct cmdq_item *item,  cmd_show_options_all(struct cmd *self, struct cmdq_item *item, int scope,
     enum options_table_scope scope, struct options *oo)      struct options *oo)
 {  {
         const struct options_table_entry        *oe;          const struct options_table_entry        *oe;
         struct options_entry                    *o;          struct options_entry                    *o;
         struct options_array_item               *a;          struct options_array_item               *a;
           const char                              *name;
         u_int                                    idx;          u_int                                    idx;
         int                                      parent;          int                                      parent;
   
         for (oe = options_table; oe->name != NULL; oe++) {          for (oe = options_table; oe->name != NULL; oe++) {
                 if (oe->scope != scope)                  if (~oe->scope & scope)
                         continue;                          continue;
   
                 if ((self->entry != &cmd_show_hooks_entry &&                  if ((self->entry != &cmd_show_hooks_entry &&
Line 228 
Line 228 
                         cmd_show_options_print(self, item, o, -1, parent);                          cmd_show_options_print(self, item, o, -1, parent);
                 else if ((a = options_array_first(o)) == NULL) {                  else if ((a = options_array_first(o)) == NULL) {
                         if (!args_has(self->args, 'v')) {                          if (!args_has(self->args, 'v')) {
                                   name = options_name(o);
                                 if (parent)                                  if (parent)
                                         cmdq_print(item, "%s*", options_name(o));                                          cmdq_print(item, "%s*", name);
                                 else                                  else
                                         cmdq_print(item, "%s", options_name(o));                                          cmdq_print(item, "%s", name);
                         }                          }
                 } else {                  } else {
                         while (a != NULL) {                          while (a != NULL) {
                                 idx = options_array_item_index(a);                                  idx = options_array_item_index(a);
                                 cmd_show_options_print(self, item, o, idx, parent);                                  cmd_show_options_print(self, item, o, idx,
                                       parent);
                                 a = options_array_next(a);                                  a = options_array_next(a);
                         }                          }
                 }                  }

Legend:
Removed from v.1.55  
changed lines
  Added in v.1.56