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

Diff for /src/usr.bin/tmux/cmd-refresh-client.c between version 1.46 and 1.47

version 1.46, 2022/02/15 13:03:02 version 1.47, 2022/03/08 12:01:19
Line 34 
Line 34 
         .name = "refresh-client",          .name = "refresh-client",
         .alias = "refresh",          .alias = "refresh",
   
         .args = { "A:B:cC:Df:F:lLRSt:U", 0, 1, NULL },          .args = { "A:B:cC:Df:F:l::LRSt:U", 0, 1, NULL },
         .usage = "[-cDlLRSU] [-A pane:state] [-B name:what:format] "          .usage = "[-cDlLRSU] [-A pane:state] [-B name:what:format] "
                  "[-C XxY] [-f flags] " CMD_TARGET_CLIENT_USAGE " [adjustment]",                   "[-C XxY] [-f flags] " CMD_TARGET_CLIENT_USAGE " [adjustment]",
   
Line 163 
Line 163 
 }  }
   
 static enum cmd_retval  static enum cmd_retval
   cmd_refresh_client_clipboard(struct cmd *self, struct cmdq_item *item)
   {
           struct args             *args = cmd_get_args(self);
           struct client           *tc = cmdq_get_target_client(item);
           const char              *p;
           u_int                    i;
           struct cmd_find_state    fs;
   
           p = args_get(args, 'l');
           if (p == NULL) {
                   if (tc->flags & CLIENT_CLIPBOARDBUFFER)
                           return (CMD_RETURN_NORMAL);
                   tc->flags |= CLIENT_CLIPBOARDBUFFER;
           } else {
                   if (cmd_find_target(&fs, item, p, CMD_FIND_PANE, 0) != 0)
                           return (CMD_RETURN_ERROR);
                   for (i = 0; i < tc->clipboard_npanes; i++) {
                           if (tc->clipboard_panes[i] == fs.wp->id)
                                   break;
                   }
                   if (i != tc->clipboard_npanes)
                           return (CMD_RETURN_NORMAL);
                   tc->clipboard_panes = xreallocarray (tc->clipboard_panes,
                       tc->clipboard_npanes + 1, sizeof *tc->clipboard_panes);
                   tc->clipboard_panes[tc->clipboard_npanes++] = fs.wp->id;
           }
           tty_clipboard_query(&tc->tty);
           return (CMD_RETURN_NORMAL);
   }
   
   static enum cmd_retval
 cmd_refresh_client_exec(struct cmd *self, struct cmdq_item *item)  cmd_refresh_client_exec(struct cmd *self, struct cmdq_item *item)
 {  {
         struct args             *args = cmd_get_args(self);          struct args             *args = cmd_get_args(self);
Line 224 
Line 255 
                 return (CMD_RETURN_NORMAL);                  return (CMD_RETURN_NORMAL);
         }          }
   
         if (args_has(args, 'l')) {          if (args_has(args, 'l'))
                 tty_send_osc52_query(&tc->tty);                  return (cmd_refresh_client_clipboard(self, item));
                 return (CMD_RETURN_NORMAL);  
         }  
   
         if (args_has(args, 'F')) /* -F is an alias for -f */          if (args_has(args, 'F')) /* -F is an alias for -f */
                 server_client_set_flags(tc, args_get(args, 'F'));                  server_client_set_flags(tc, args_get(args, 'F'));

Legend:
Removed from v.1.46  
changed lines
  Added in v.1.47