mirror of
https://github.com/tmux/tmux.git
synced 2025-04-04 15:25:29 +00:00
Merge branch 'obsd-master' into master
This commit is contained in:
commit
2750195709
@ -417,7 +417,7 @@ int
|
|||||||
input_key(struct screen *s, struct bufferevent *bev, key_code key)
|
input_key(struct screen *s, struct bufferevent *bev, key_code key)
|
||||||
{
|
{
|
||||||
struct input_key_entry *ike;
|
struct input_key_entry *ike;
|
||||||
key_code justkey, newkey, outkey;
|
key_code justkey, newkey, outkey, modifiers;
|
||||||
struct utf8_data ud;
|
struct utf8_data ud;
|
||||||
char tmp[64], modifier;
|
char tmp[64], modifier;
|
||||||
|
|
||||||
@ -518,7 +518,12 @@ input_key(struct screen *s, struct bufferevent *bev, key_code key)
|
|||||||
return (input_key(s, bev, key & ~KEYC_CTRL));
|
return (input_key(s, bev, key & ~KEYC_CTRL));
|
||||||
}
|
}
|
||||||
outkey = (key & KEYC_MASK_KEY);
|
outkey = (key & KEYC_MASK_KEY);
|
||||||
switch (key & KEYC_MASK_MODIFIERS) {
|
modifiers = (key & KEYC_MASK_MODIFIERS);
|
||||||
|
if (outkey < ' ') {
|
||||||
|
outkey = 64 + outkey;
|
||||||
|
modifiers |= KEYC_CTRL;
|
||||||
|
}
|
||||||
|
switch (modifiers) {
|
||||||
case KEYC_SHIFT:
|
case KEYC_SHIFT:
|
||||||
modifier = '2';
|
modifier = '2';
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user