mirror of
https://github.com/tmux/tmux.git
synced 2024-11-16 17:39:09 +00:00
Merge branch 'obsd-master'
This commit is contained in:
commit
86159fca82
@ -118,9 +118,14 @@ cmd_send_keys_inject_string(struct cmdq_item *item, struct cmdq_item *after,
|
||||
if (literal) {
|
||||
ud = utf8_fromcstr(s);
|
||||
for (loop = ud; loop->size != 0; loop++) {
|
||||
if (utf8_from_data(loop, &uc) != UTF8_DONE)
|
||||
continue;
|
||||
after = cmd_send_keys_inject_key(item, after, uc);
|
||||
if (loop->size == 1 && loop->data[0] <= 0x7f)
|
||||
key = loop->data[0];
|
||||
else {
|
||||
if (utf8_from_data(loop, &uc) != UTF8_DONE)
|
||||
continue;
|
||||
key = uc;
|
||||
}
|
||||
after = cmd_send_keys_inject_key(item, after, key);
|
||||
}
|
||||
free(ud);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user