mirror of
https://github.com/tmux/tmux.git
synced 2025-04-06 16:18:48 +00:00
Merge branch 'obsd-master'
This commit is contained in:
commit
38c38f1c64
@ -556,6 +556,10 @@ input_key_mode1(struct bufferevent *bev, key_code key)
|
|||||||
(onlykey >= '@' && onlykey <= '~')))
|
(onlykey >= '@' && onlykey <= '~')))
|
||||||
return (input_key_vt10x(bev, key));
|
return (input_key_vt10x(bev, key));
|
||||||
|
|
||||||
|
/* Avoid reporting A as Shift-A, which is not expected in mode 1. */
|
||||||
|
if ((key & KEYC_MASK_MODIFIERS) == KEYC_SHIFT)
|
||||||
|
return (input_key_vt10x(bev, key));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* A regular key + Meta. In the absence of a standard to back this, we
|
* A regular key + Meta. In the absence of a standard to back this, we
|
||||||
* mimic what iTerm 2 does.
|
* mimic what iTerm 2 does.
|
||||||
|
Loading…
Reference in New Issue
Block a user