[BACK]Return to input-keys.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/input-keys.c between version 1.80 and 1.81

version 1.80, 2020/09/18 11:20:59 version 1.81, 2020/11/17 08:13:35
Line 330 
Line 330 
           .data = "\033[2;_~"            .data = "\033[2;_~"
         },          },
         { .key = KEYC_DC|KEYC_BUILD_MODIFIERS,          { .key = KEYC_DC|KEYC_BUILD_MODIFIERS,
           .data = "\033[3;_~" }            .data = "\033[3;_~"
           }
 };  };
 static const key_code input_key_modifiers[] = {  static const key_code input_key_modifiers[] = {
         0,          0,
Line 557 
Line 558 
                 modifier = '8';                  modifier = '8';
                 break;                  break;
         default:          default:
                 fatalx("invalid key modifiers: %llx", key);                  goto missing;
         }          }
         xsnprintf(tmp, sizeof tmp, "\033[%llu;%cu", outkey, modifier);          xsnprintf(tmp, sizeof tmp, "\033[%llu;%cu", outkey, modifier);
         bufferevent_write(bev, tmp, strlen(tmp));          bufferevent_write(bev, tmp, strlen(tmp));

Legend:
Removed from v.1.80  
changed lines
  Added in v.1.81