mirror of
https://github.com/tmux/tmux.git
synced 2025-03-23 05:38:56 +00:00
Merge branch 'obsd-master'
This commit is contained in:
commit
3eb93383a3
@ -937,6 +937,11 @@ partial_key:
|
||||
delay = options_get_number(global_options, "escape-time");
|
||||
if (delay == 0)
|
||||
delay = 1;
|
||||
if ((tty->flags & TTY_ALL_REQUEST_FLAGS) != TTY_ALL_REQUEST_FLAGS) {
|
||||
log_debug("%s: increasing delay for active DA query", c->name);
|
||||
if (delay < 500)
|
||||
delay = 500;
|
||||
}
|
||||
tv.tv_sec = delay / 1000;
|
||||
tv.tv_usec = (delay % 1000) * 1000L;
|
||||
|
||||
|
@ -4263,6 +4263,8 @@ window_copy_match_at_cursor(struct window_copy_mode_data *data)
|
||||
buf = xrealloc(buf, len + 2);
|
||||
buf[len] = '\t';
|
||||
len++;
|
||||
} else if (gc.flags & GRID_FLAG_PADDING) {
|
||||
/* nothing to do */
|
||||
} else {
|
||||
buf = xrealloc(buf, len + gc.data.size + 1);
|
||||
memcpy(buf + len, gc.data.data, gc.data.size);
|
||||
|
Loading…
Reference in New Issue
Block a user